.nav-item ul, .dropdown-content, .sub-menu { 
    position: absolute !important;
    z-index: 9999 !important; 
    background: rgba(15, 15, 15, 0.98) !important; 
    border: 1px solid rgba(138, 43, 226, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    backdrop-filter: none !important; 
}
.footer {
    background: linear-gradient(290deg, #000000 20%, #2e0854 50%, #000000 80%, #2e0854 100%);
    background-size: 200% 100%; 
    animation: aurora 25s linear infinite; 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(138, 43, 226, 0.4);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
    transition: all 0.5s ease;
    padding: 10px;
}

.footer:hover {
    animation-duration: 10s; 
    border-top: 1px solid rgba(255, 0, 255, 0.5);
    box-shadow: 0 -15px 40px rgba(255, 0, 255, 0.15);
}

@keyframes aurora {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.footer-nav-links {
  margin-bottom: 0;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav-links a {
  color: #bbb; 
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  font-family: sans-serif;
  transition: 0.3s;
  color: #bbb !important;
}

.footer-nav-links a:hover {
  color: #00aaff;
}
.footer-content p {
  padding: 1px;
  text-align: center;
  margin: 10px 0 10px;
  font-size: 14px;
  color: #bbb !important;
}

@media (max-width: 600px) {
  .footer-nav-links {
    gap: 15px;
    font-size: 12px;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");


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

a {
  text-decoration: none !important;
  color: var(--accent-light);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent);
}

a:visited {
    color: #fff;
}

.category-tag,
.category-tag:hover,
.category-tag:visited,
.category-tag:active,
.category-tag:focus {
  color: inherit !important;
  text-decoration: none !important;
  outline: none;
}

:root {
  
  --bg-dark: #0c0c10;
  --bg-card: #141418;
  --bg-hover: #1c1c22;
  --accent: #7c5cfc;
  --accent-light: #a78bfa;
  --accent-soft: rgba(124, 92, 252, 0.12);

  
  --text-primary: #e8e8f0;
  --text-secondary: #a0a0b0;
  --text-muted: #6a6a78;
  --border: #222230;
  --notice-bg: #12121a;
  --notice-border: rgba(124, 92, 252, 0.35);

  
  --font-xs: 0.75rem;
  --font-sm: 1rem;
  --font-base: 0.875rem;
  --font-md: 0.95rem;
  --font-lg: 1.125rem;
  --font-xl: 1.35rem;
  --font-2xl: 1.75rem;
}

html {
  background-color: #040506;
  overscroll-behavior-x: none;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: -apple-system, "Inter", BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(
      900px 500px at 15% 10%,
      #000000 0%,
      transparent 60%
    ),
    radial-gradient(700px 400px at 85% 20%, #2a1d3f 0%, transparent 60%),
    linear-gradient(217deg, #000000e8, #0f1424);
  color: #fff;
  min-height: 100vh;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.glass {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid #000;
  border-radius: 16px;
}


.header {
    background: linear-gradient(110deg, #000000 20%, #2e0854 50%, #000000 80%, #2e0854 100%);
    background-size: 200% 100%;
    animation: aurora 25s linear infinite;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(138, 43, 226, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transition: all 0.5s ease;
    position: relative; 
    z-index: 100;      
    overflow: visible !important; 
}

/* Keyframes definition */
@keyframes aurora {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header:hover {
    animation-duration: 10s; 
    border-bottom: 1px solid rgba(255, 0, 255, 0.5);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.15); /* Pink shadow glow */
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}


.mobile-top-row {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}


.logo-desktop {
  display: flex;
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  background: none;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.nav-menu {
  flex: 1;
  z-index: 9999;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  justify-content: right;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: var(--bg-hover);
}

.dropdown-icon {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  transition: transform 0.2s;
}

.nav-item.has-submenu:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dwd-button {
  margin: 8px;
  color: white;
  border: none;
  font-size: large;
  cursor: pointer;
  min-width: 190px !important;
  padding: 10px;
  background: linear-gradient(
    135deg,
    rgba(103, 223, 3, 0.72),
    rgba(19, 86, 213, 0.72)
  ) !important;
  border-radius: 10% !important;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  box-shadow: 0 0 0 -7px #1a202c;
}

.dwd-button:hover {
  box-shadow: 2px 10px 15px -14px #ffff;
}


.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 170px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.nav-item.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  font-size: var(--font-sm);
  transition: all 0.2s;
}

.submenu li a:hover {
  color: #fff;
  background: #000;
}


.search-bar {
  position: relative;
  
  max-width: 300px;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.search-input {
  width: 100%;
  padding: 10px 30px 10px 40px;
  background: #ffffff00;
  border: 1px solid #8d8da5;
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: var(--font-sm);
  transition: all 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-hover);
}

.search-input::placeholder {
  color: var(--text-muted);
}


.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: #1414183b;
  backdrop-filter: blur(3px);
  z-index: 1002;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.side-menu.active {
  transform: translateX(0);
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.close-menu {
  width: 34px;
  height: 34px;
  background: var(--bg-hover);
  border: none;
  border-radius: 8px;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.close-menu:hover {
  background: var(--bg-dark);
  color: var(--text-primary);
}

.close-menu svg {
  width: 16px;
  height: 16px;
}

.side-nav {
  padding: 12px 0;
}

.side-nav-list {
  list-style: none;
}

.side-nav-item {
  border-bottom: 1px solid var(--border);
}

.side-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.side-nav-link:hover,
.side-nav-link.active {
  color: var(--text-primary);
  background: #33334d69;
}

.side-nav-link .dropdown-icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  transition: transform 0.3s;
}

.side-nav-item.open .dropdown-icon {
  transform: rotate(180deg);
}

.side-submenu {
  display: none;
  list-style: none;
  
}

.side-nav-item.open .side-submenu {
  display: block;
}

.side-submenu li a {
  display: block;
  padding: 12px 18px 12px 32px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.side-submenu li a:hover {
  color: var(--text-primary);
  background: var(--bg-hover);
}


.app-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}


.notice-section {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--notice-bg);
  border: 1px solid var(--notice-border);
  border-radius: 10px;
  padding: 3px 16px;
  margin-bottom: 20px;
}

.notice-icon {
  padding-top: 8px;
  flex-shrink: 0;
}

.notice-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.notice-text {
  flex: 1;
  font-size: var(--font-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

.notice-text strong {
  color: var(--accent-light);
  font-weight: 600;
}

.notice-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  color: #ffcc00;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s;
}

.notice-close:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.notice-close svg {
  width: 14px;
  height: 14px;
}

.notice-section.hidden {
  display: none;
}


.hero-section {
  padding-top: 16px;
  position: relative;
  margin-bottom: 28px;
}

.hero-slider {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.hero-banner {
  position: relative;
  height: 300px;
  display: none; 
  animation: fadeIn 0.5s ease-in-out;
}

.hero-banner.active {
  display: block; 
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 12, 16, 1) 0%,
    rgba(12, 12, 16, 0.98) 15%,
    rgba(12, 12, 16, 0.92) 30% 30%,
    rgb(12 12 16 / 0%) 50%,
    rgb(12 12 16 / 0%) 70%,
    rgba(12, 12, 16, 0.1) 90%,
    rgba(12, 12, 16, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 28px 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 480px;
}

.hero-title {
  font-size: var(--font-2xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero-description {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn {
  padding: 10px 24px;
  border: none;
  border-radius: 15%;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  width: fit-content;
  margin: 2px;
  min-width: 230px;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: #6b4ce0;
  transform: translateY(-1px);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.hero-nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.hero-nav svg {
  width: 33px;
  height: 26px;
}

.hero-prev {
  left: 14px;
}

.hero-next {
  right: 14px;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  width: 34px;
  border-radius: 4px;
  background: var(--accent);
}

.logo-image {
  padding-top: 10px;
  width: 200px;
  
}


.content-section {
  margin: 0; /*10px 0 30px 0;*/
  padding: 10px;
}

.section-title {
  display: flex;
  font-size: var(--font-xl);
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.material-icons {
  padding-top: 4px;
}


.movies-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 20px;
}


.poster-card {     
    background: linear-gradient(200deg, #FFFFFFFA 0%, #000 60%) padding-box, linear-gradient(45deg, #f06, #9f6, #0cf, #f90, #90f, #f06) border-box;
    background-size: 70% 100%;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    transition: transform 0.6s ease;
}

.poster-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(46, 8, 84, 0.9) 100%) !important;
    border: 1px solid rgba(138, 43, 226, 1) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 1), 0 0 30px rgba(138, 43, 226, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease-in-out;
}

.poster-card:hover .poster-quality {
    background: #ff004c !important;
    color: #fff !important;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(255, 0, 76, 0.8);
    border-radius: 4px;
    padding: 2px 10px;
    left: 10px !important;
    top: 10px !important;
    transform: scale(1.1);
}

.poster-card:hover .imdb-score {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 0, 255, 0.5);
    color: #ff00ff !important;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
    border-radius: 6px;
    padding: 3px 10px;
    right: 10px !important;
    top: 10px !important;
    transform: scale(1.1);
}

.poster-card:hover .imdb-score i {
    color: #ff00ff !important;
    filter: drop-shadow(0 0 5px #ff00ff);
}

.poster-card:hover .card-content, .poster-card:hover .movie-info {
    background: transparent !important;
    color: #fff !important;
}

.poster-card:hover .poster-date {
    color: #ff00ff !important;
    text-shadow: 0 0 5px rgba(255, 0, 255, 0.5);
}

.poster-inner {
  overflow: hidden;
  height: 100%;
}

.poster-image {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
border-radius: 8px;
transition: transform 0.22s ease;
}

.poster-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.poster-card:hover .poster-image img {
  transform: scale(1.05);
}

.poster-quality {
  position: absolute;
  top: 0px !important;
  left: 0px !important;
  background: #db0a0a;
  padding: 4px 7px;
  border-radius: 15%;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  border-radius: 0px 0px 8px 0px !important;
  
}

.imdb-badge {
  position: absolute !important;
  top: 0px !important;
  right: 0px !important;
  z-index: 999 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.imdb-badge .imdb-score {
  display: inline-block !important;
  background: rgba(0,0,0,0.7) !important;
  color: #fff !important;
  padding: 5px 10px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  border-radius: 0px 0px 0px 8px !important;
  font-family: 'Oswald', sans-serif !important;
  letter-spacing: 0.5px !important;
}
@media (max-width: 768px) {
  .imdb-badge .imdb-score {
    padding: 5px 6px !important;
    font-size: 11px !important;
  }
}

.poster-info {
  padding: 14px 6px;
  
}


.poster-title {
  font-size: 1rem;
  
  
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.poster-year {
  font-size: 0.8rem;
  color: #9aa3b2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 30px;
  background: none;
}

.page-btn {
  width: 80px;
  height: 40px;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.page-btn:hover:not(:disabled) {
  background: #ffffff;
  color: var(--text-primary);
  border-color: var(--accent);
}

.page-btn:disabled {
  opacity: inherit;
  cursor: not-allowed;
}

.page-btn svg {
  width: 22px;
  height: 25px;
  color: #ff0303;
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-num {
  min-width: 44px;
  height: 40px;
  padding: 0 8px; 
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 10px;
  color: #fff !important;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; 
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(196, 152, 17, 0.5);
}

.page-num:hover {
    background: linear-gradient(135deg, #c49811 0%, #30ab17 100%) !important;
    border: none !important;
    box-shadow: 0 0 20px rgba(196, 152, 17, 0.5);
    cursor: pointer;
    transform: scale(1.1);
    z-index: 6;
}

.page-num.active {
    background: linear-gradient(135deg, #c49811 0%, #30ab17 100%) !important;
    border: none !important;
    box-shadow: 0 0 20px rgba(196, 152, 17, 0.5);
    cursor: default !important;
    transform: scale(1.1);
    z-index: 6;
    color: #000 !important;
}

.page-dots {
  color: var(--text-muted);
  padding: 0 4px;
  font-size: var(--font-sm);
}


@media (max-width: 1200px) {
  .movies-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 992px) {
  
  .header-container {
    padding: 10px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }

  
  .logo-desktop {
    display: none !important;
  }

  
  .mobile-top-row {
    display: flex;
    width: 100%;
    order: 1;
  }

  
  .mobile-top-row .logo {
    position: absolute;
    left: 27%;
    transform: translateX(-50%);
  }

  
  .hamburger {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }

  
  .nav-menu {
    display: none;
  }

  .search-bar {
    max-width: none;
    flex: 1;
  }

  .app-container {
    padding: 110px 20px 30px;
  }

  .movies-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }

  .hero-banner {
    height: 250px;
  }

  .hero-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --font-xs: 0.7rem;
    --font-sm: 0.78rem;
    --font-base: 0.825rem;
  }

  .header-container {
    padding: 25px 15px 10px 15px;
    gap: 8px !important;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .search-input {
    padding: 9px 12px 9px 34px;
  }

  .app-container {
    padding: 0;
  }

  .notice-section {
    padding: 10px 12px;
    gap: 10px;
  }

  .hero-banner {
    height: 220px;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-title {
    font-size: 1.35rem;
    margin-bottom: 8px;
  }

  .hero-description {
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .btn {
    padding: 10px 10px !important;
    min-width: 230px;
    margin-bottom: 15px !important;
    border-radius: 15%;
  }

  .hero-nav {
    width: 34px;
    height: 34px;
  }

  .hero-nav svg {
    width: 16px;
    height: 16px;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }

  .movies-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .page-btn,
  .page-num {
    width: 25px;
  }
  
  .bottom-row .p-btn {
  	padding: 0 20px !important;
  	min-width: 140px !important;
   }
}

.responsive-device-btn {
  display: none !important;
  background: linear-gradient(90deg, #ff2d55, #ff5f89);
  color: #fff !important;
  border: none;
  padding: 12px 15px;
  font-size: 15px;
  border-radius: 15%;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgb(255 45 85 / 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  font-weight: 600 !important;
  margin-top: 1px;
}


@media (max-width: 480px) {
  :root {
    --font-xs: 0.65rem;
    --font-sm: 0.72rem;
    --font-base: 0.78rem;
  }
  
  .breadcrumb {
    display: none;
  }
  .top-row .p-btn {
    padding: 0 !important;
  }
  .logo-image {
    
    width: 180px;
    
  }
  .hero-section {
    margin-bottom: 10px;
  }

  .logo-icon {
    width: 20px;
    height: 20px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .search-input {
    padding: 15px 10px 15px 36px;
  }

  .app-container {
    padding: 0;
  }

  .notice-section {
    flex-wrap: wrap;
    padding: 10px;
    position: relative;
  }

  .notice-icon {
    display: none;
  }

  .notice-text {
    flex: 1 1 100%;
    order: 1;
    padding-right: 24px;
  }

  .notice-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
  }

  .hero-banner {
    height: 180px;
    display: none; 
    animation: fadeIn 0.5s ease-in-out;
  }

  .material-icons {
    padding-top: 0px;
  }

  .hero-banner.active {
    display: block; 
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .hero-content {
    padding: 14px;
    background: #00000030;
  }

  .hero-title {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }

  .hero-description {
    margin-bottom: 12px;
  }

  .btn {
    padding: 8px 16px;
  }

  .hero-nav {
    width: 30px;
    height: 30px;
  }

  .hero-prev {
    left: 8px;
  }

  .hero-next {
    right: 8px;
  }

  .movies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .poster-card {
    
  }

  .poster-inner {
    
  }

  .poster-info {
    padding: 10px 2px;
  }

  .poster-title {
    font-size: 0.9rem;
  }

  .poster-year {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px !important;
  }

  .page-btn,
  .page-num {
  min-width: 40px;
  height: 40px;
  padding: 0 8px; 
  border: 1px solid #fff;
  border-radius: 10px;
  color: #fff !important;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; 
  align-items: center;
  justify-content: center;
}

  .page-num:hover,
  .page-btn:hover:not(:disabled) {
    background: #fff;
    color: #fff;
  }

  .page-num.active {
    background: #fff;
    border-color: #fff;
    color: #fff;
  }

  .page-btn:disabled {
    opacity: inherit;
    cursor: not-allowed;
    background: transparent;
    border-color: #fff;
  }

  .page-dots {
    color: #666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
  }

  .page-numbers {
    gap: 8px;
    display: inline-flex;
  }

  .side-menu {
    width: 260px;
  }
}


.portal-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  align-items: center;
}


.top-row,
.bottom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
}


.p-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.1s ease, filter 0.2s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
}

.p-btn:active {
  transform: scale(0.96);
}

.p-btn:hover {
  filter: brightness(1.1);
  box-shadow: 2px 10px 15px -14px #ffff;
  color: white;
}


.top-row .p-btn {
  height: 45px;
  border-radius: 15%;
  font-size: 16px;
  min-width: 140px;
  color: #000;
  padding: 10px 40px;
}

.btn-rog {
  background-color: #1aff1a;
}

.btn-goku {
  background-color: #80ffff;
}

.btn-xprime {
  background-color: #ffa500;
}

.btn-telegram {
  padding: 6px;
  background-color: #1a6d96;
  color: #ffffff !important;
}


.bottom-row .p-btn {
  height: 40px;
  padding: 0 20px;
  border-radius: 15%;
  font-size: 15px;
  background-color: #0e5db3;
  color: #ffffff;
  min-width: 122px;
}


.btn-download {
  grid-column: 1 / -1;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f87171 0%, #ec4899 50%, #f472b6 100%);
  color: #fff;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
  gap: 8px;
}

.btn-download:hover {
  background: linear-gradient(135deg, #fb7185 0%, #db2777 50%, #ec4899 100%);
  box-shadow: 0 6px 25px rgba(236, 72, 153, 0.5);
}


.p-icon {
  margin-right: 6px;
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

sup {
  font-size: 11px;
  margin-left: 1px;
  font-weight: 800;
  vertical-align: super;
}


@media (max-width: 480px) {
  .top-row,
  .bottom-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .btn-download {
    grid-column: 1 / -1;
  }
}




.comments-area,
#comments {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
}


.comments-title,
#comments-title,
.comments-area h2,
.comments-area h3 {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.02em;
}


.comment-list,
.commentlist {
  list-style: none;
  padding: 0;
  margin: 0;
}


.comment,
.comment-body {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.comment:last-child,
.comment-body:last-child {
  border-bottom: none;
}


.children {
  list-style: none;
  padding-left: 24px;
  margin-left: 24px;
  border-left: 2px solid var(--accent-soft);
}

.children .comment {
  padding: 16px 0;
}


.comment-author,
.comment-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.comment-author .avatar,
.comment-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--accent-soft);
  object-fit: cover;
}

.comment-author .fn,
.comment-author .says,
.comment-author b,
.comment-author a {
  font-weight: 600;
  color: var(--text-primary);
  font-size: var(--font-base);
}

.comment-author .says {
  display: none;
}


.comment-metadata,
.comment-meta time,
.commentmetadata {
  font-size: var(--font-xs);
  color: var(--text-muted);
}

.comment-metadata a,
.commentmetadata a {
  color: var(--text-muted);
}

.comment-metadata a:hover,
.commentmetadata a:hover {
  color: var(--accent-light);
}


.comment-content,
.comment-text {
  color: var(--text-secondary);
  font-size: var(--font-sm);
  line-height: 1.7;
  margin: 12px 0;
}

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

.comment-content p:last-child {
  margin-bottom: 0;
}


.comment-content a {
  color: var(--accent-light);
  text-decoration: underline;
  text-decoration-color: rgba(167, 139, 250, 0.3);
  text-underline-offset: 2px;
}

.comment-content a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}


.reply,
.comment-reply-link {
  margin-top: 12px;
}

.reply a,
.comment-reply-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent-light);
  font-size: var(--font-xs);
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.reply a:hover,
.comment-reply-link:hover {
  background: var(--accent);
  color: white;
}


.comment-edit-link {
  font-size: var(--font-xs);
  color: var(--text-muted);
  margin-left: 10px;
}

.comment-edit-link:hover {
  color: var(--accent-light);
}


.comment-awaiting-moderation {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  font-size: var(--font-xs);
  border-radius: 4px;
  margin-top: 8px;
}



#respond,
.comment-respond {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}


#reply-title,
.comment-reply-title {
  font-size: var(--font-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#cancel-comment-reply-link {
  font-size: var(--font-xs);
  color: var(--text-muted);
  padding: 4px 10px;
  background: var(--bg-hover);
  border-radius: 4px;
}

#cancel-comment-reply-link:hover {
  color: var(--accent-light);
  background: var(--accent-soft);
}


.comment-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comment-form label {
  display: block;
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.comment-form .required {
  color: #ef4444;
}


.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: var(--font-sm);
  transition: all 0.2s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
  color: var(--text-muted);
}

.comment-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}


.comment-notes,
.logged-in-as {
  font-size: var(--font-xs);
  color: var(--text-muted);
  margin-bottom: 8px;
}

.logged-in-as a {
  color: var(--accent-light);
}


.comment-form .submit,
.form-submit input[type="submit"],
#submit {
  padding: 12px 28px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: var(--font-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: fit-content;
}

.comment-form .submit:hover,
.form-submit input[type="submit"]:hover,
#submit:hover {
  background: #6b4ce0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 92, 252, 0.4);
}

.comment-form .submit:active,
.form-submit input[type="submit"]:active,
#submit:active {
  transform: translateY(0);
}


.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.comment-form-cookies-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  margin-top: 2px;
}

.comment-form-cookies-consent label {
  margin-bottom: 0;
  font-size: var(--font-xs);
  color: var(--text-muted);
  line-height: 1.5;
}


.comment-form-author,
.comment-form-email,
.comment-form-url {
  flex: 1;
}


.comment-navigation,
.comments-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-top: 16px;
  border-top: 1px solid var(--border);
}

.comment-navigation a,
.comments-pagination a {
  padding: 8px 16px;
  background: var(--bg-hover);
  color: var(--text-secondary);
  border-radius: 6px;
  font-size: var(--font-sm);
  font-weight: 500;
}

.comment-navigation a:hover,
.comments-pagination a:hover {
  background: var(--accent-soft);
  color: var(--accent-light);
}


.no-comments {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: var(--font-sm);
}


.pingback,
.trackback {
  padding: 12px 16px;
  background: var(--bg-hover);
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: var(--font-sm);
  color: var(--text-secondary);
}

.pingback a,
.trackback a {
  color: var(--accent-light);
}


.comments-closed,
.nocomments {
  text-align: center;
  padding: 24px;
  background: var(--notice-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: var(--font-sm);
}



@media (max-width: 768px) {
  .comments-area,
  #comments {
    padding: 18px;
    margin-top: 24px;
  }

  .comments-title,
  #comments-title {
    font-size: var(--font-lg);
    margin-bottom: 18px;
    padding-bottom: 12px;
  }

  .children {
    padding-left: 16px;
    margin-left: 12px;
  }

  .comment-author .avatar,
  .comment-author img {
    width: 36px;
    height: 36px;
  }

  #respond,
  .comment-respond {
    padding: 18px;
  }

  .comment-form textarea {
    min-height: 120px;
  }
}

@media (max-width: 480px) {
  .comments-area,
  #comments {
    padding: 14px;
    border-radius: 10px;
  }

  .comment,
  .comment-body {
    padding: 14px 0;
  }

  .children {
    padding-left: 12px;
    margin-left: 8px;
  }

  .comment-author .avatar,
  .comment-author img {
    width: 32px;
    height: 32px;
  }

  #respond,
  .comment-respond {
    padding: 14px;
  }

  .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="url"],
  .comment-form textarea {
    padding: 10px 12px;
  }

  .comment-form .submit,
  .form-submit input[type="submit"],
  #submit {
    width: 100%;
    padding: 12px 20px;
  }
}
.vm3-premium-nav {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
}

.vm3-main-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 10px;
    width: 100%;
}

.vm3-card {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 15%;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1.5px solid rgba(255,255,255,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.card-green { 
    background: linear-gradient(135deg, #1d8a42, #0d5c2b); 
    --hvr-glow: rgba(46, 204, 113, 0.5);
    --hvr-bg: linear-gradient(135deg, #24ad53, #137a39);
}
.card-blue { 
    background: linear-gradient(135deg, #1a6ab3, #0d447a); 
    --hvr-glow: rgba(52, 152, 219, 0.5);
    --hvr-bg: linear-gradient(135deg, #2982d6, #145a9c);
}
.card-orange { 
    background: linear-gradient(135deg, #d37e00, #965a00); 
    --hvr-glow: rgba(243, 156, 18, 0.5);
    --hvr-bg: linear-gradient(135deg, #f39100, #b86e00);
}
.card-tg { 
    background: linear-gradient(135deg, #0088cc, #005580); 
    --hvr-glow: rgba(0, 172, 237, 0.5);
    --hvr-bg: linear-gradient(135deg, #00aaff, #0077b3);
}

.vm3-card:hover {
    transform: scale(1.05);
    background: var(--hvr-bg);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 25px var(--hvr-glow), 0 10px 20px rgba(0,0,0,0.4);
}

.vm3-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: 0.5s;
}

.vm3-card:hover::after {
    left: 100%;
}

.card-icon {
    font-size: 22px;
    margin-right: 12px;
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    flex-shrink: 0;
}

.card-icon svg { width: 24px; height: 24px; }
.card-content { display: flex; flex-direction: column; overflow: hidden; }

.card-title {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.card-tag {
    color: rgba(255,255,255,0.85) !important;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 1px;
}

@media (min-width: 1025px) {
    .vm3-premium-nav { max-width: 1250px; }
    .vm3-main-grid { grid-template-columns: repeat(4, 1fr); }
}

@media screen and (min-width: 992px) {
    .vm3-tag { width: 140px !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .vm3-premium-nav { max-width: 700px; }
    .vm3-main-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .vm3-card { padding: 1px 12px; }
      .vm3-premium-nav {
    margin: 0 auto !important;
  }
}

@media (max-width: 767px) {
    .vm3-main-grid {
        grid-template-columns: repeat(2, 1fr);
		padding: 10px 0 10px;
    }
    
    .vm3-card { padding: 5px 10px; }
    .card-icon { min-width: 28px; height: 28px; font-size: 15px; margin-right: 8px; }
    .card-title { font-size: 13px; }
    .card-tag { font-size: 8px; }
    .vm3-tag-cloud { justify-content: flex-start; }
}

.vm3-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
	padding-top: 0;
}

.vm3-tag {
    background: #1a1a1a;
    color: #eeeeee !important;
    padding: 8px 1px;
    border-radius: 15%;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none !important;
    border: 1px solid #444;
    transition: all 0.2s ease;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 1;  
	cursor: pointer;
}

.vm3-tag:hover {
    color: #fff !important;
	transform: scale(1.05);
    box-shadow: 0 0 20px rgba(66, 133, 244, 0.6), 
              0 0 40px rgba(155, 114, 203, 0.4);
    background: linear-gradient(45deg, #4285F4, #9B72CB);
}

.vm3-tag::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, #4285F4, #9B72CB, #D96570);
  z-index: -1;
  filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s;
}

.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}
.skip-to-content:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  overflow: visible;
  z-index: 9999;
  background: #c2185b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.btn-pill { display: none; }

@media (max-width: 1024px) {
  .btn-pill {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 400px;
    border-radius: 50px;
    overflow: hidden;
    text-decoration: none !important;
    transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s ease;
    box-shadow: 0 4px 18px rgba(194,24,91,0.35);
    margin-bottom: 10px;
  }

  .btn-pill:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(194,24,91,0.5);
  }

  .btn-pill:active { transform: scale(0.98); }

  .btn-pill-left {
    background: #c2185b;
    padding: 6px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
  }

  .btn-pill-left svg {
    width: 20px;
    height: 20px;
    color: #fff;
    flex-shrink: 0;
  }

  .btn-pill-left-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .btn-pill-left-text span:first-child {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }

  
  .btn-pill-left-text span:last-child {
    font-size: 10px;
    font-weight: 700;
    color: #ffffff; 
    letter-spacing: 0.1em;
    text-align: center;
  }

  .btn-pill-right {
    background: #8b0e3f;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  
  .btn-pill-right span {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff; 
  }

  
  .btn-pill-right svg {
    width: 14px;
    height: 14px;
    color: #ffffff; 
  }
  .vm3-tag-cloud {
  padding-top: 10px;
  }
}