:root {
  color-scheme: dark;
  --ae-bg: #07030a;
  --ae-panel: rgba(17, 16, 26, 0.99);
  --ae-panel-strong: rgba(29, 26, 47, 0.9);
  --ae-border: rgba(255, 255, 255, 0.15);
  --ae-primary: #f64cff;
  --ae-primary-soft: rgba(246, 76, 255, 0.2);
  --ae-secondary: #59ffcd;
  --ae-text: #f7f3ff;
  --ae-text-muted: rgba(247, 243, 255, 0.68);
  --ae-font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ae-font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ae-shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.4);
  --ae-radius-xl: 28px;
  --ae-radius-lg: 20px;
  --ae-radius-md: 16px;
  --ae-radius-pill: 999px;
  --ae-bg-pattern: radial-gradient(circle at 20% 20%, rgba(89, 255, 205, 0.1) 0, transparent 40%), radial-gradient(circle at 80% 0, rgba(246, 76, 255, 0.2) 0, transparent 55%), linear-gradient(145deg, rgba(7, 3, 10, 1) 0%, rgba(14, 10, 23, 1) 100%);
}

html.ae-theme-light {
  color-scheme: light;
  --ae-bg: #f4f7fb;
  --ae-panel: rgba(255, 255, 255, 0.92);
  --ae-panel-strong: rgba(255, 255, 255, 0.98);
  --ae-border: rgba(17, 24, 39, 0.10);
  --ae-primary: #6b5cff;
  --ae-primary-soft: rgba(107, 92, 255, 0.12);
  --ae-secondary: #0ea5e9;
  --ae-text: #111827;
  --ae-text-muted: #667085;
  --ae-shadow-soft: 0 16px 30px rgba(16, 24, 40, 0.10);
  --ae-bg-pattern: linear-gradient(145deg, rgba(244, 247, 251, 1) 0%, rgba(236, 242, 248, 1) 100%);
}

* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;

}

body {
  margin: 0;
  font-family: var(--ae-font-body);
  background-color: var(--ae-bg);
  background-image: var(--ae-bg-pattern);
  color: var(--ae-text);
}

button {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration:none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ae-shell {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 32px clamp(12px, 3vw, 40px) 60px;
}

.ae-left-nav {
  position: fixed;
  top: 32px;
  left: clamp(12px, 3vw, 40px);
  width: clamp(210px, 18vw, 260px);
  height: calc(100vh - 64px);
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  background: var(--ae-panel);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--ae-shadow-soft);
  overflow: auto;
  z-index: 20;
}

.ae-left-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ae-left-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--ae-radius-lg);
  color: var(--ae-text-muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}

.ae-left-menu-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.ae-left-menu-link-active,
.ae-left-menu-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ae-text);
}

html.ae-theme-light .ae-left-menu-link-active,
html.ae-theme-light .ae-left-menu-link:hover {
  background: rgba(17, 24, 39, 0.06);
}

.ae-left-nav-footer {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ae-theme-label {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ae-text-muted);
  text-align: center;
}

.ae-theme-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 5px;
  border-radius: var(--ae-radius-pill);
  border: 1px solid var(--ae-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ae-text);
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
}

.ae-theme-toggle .ae-theme-option {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  z-index: 2;
}

.ae-theme-thumb {
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: calc(50% - 6px);
  border-radius: var(--ae-radius-pill);
  background: var(--ae-primary);
  transition: transform 0.25s ease;
  z-index: 1;
  transform: translateX(0);
}

.ae-theme-toggle.ae-light .ae-theme-thumb {
  transform: translateX(calc(100% + 2px));
}

.ae-app-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(210px, 18vw, 260px);
}

.ae-content-shell {
  padding-left: clamp(12px, 3vw, 40px);
}

.ae-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 32px);
  padding: 20px clamp(16px, 3vw, 40px);
  background: rgba(7, 6, 14, 0.8);
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-lg);
  box-shadow: var(--ae-shadow-soft);
  position: sticky;
  top: 0;
  backdrop-filter: blur(20px);
  z-index: 998;
}

html.ae-theme-light .ae-header {
  background: rgba(255, 255, 255, 0.85);
}

.ae-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ae-font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ae-text);
}

.ae-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ae-primary), var(--ae-secondary));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #0b060f;
}

.ae-logo-text {
  font-size: 1.5rem;
}

.ae-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, rgba(118, 87, 255, 0.6), rgba(255, 141, 193, 0.5));
  color: var(--ae-text);
  position: relative;
  isolation: isolate;
  box-shadow: 0 10px 25px rgba(5, 0, 20, 0.45);
  backdrop-filter: blur(4px);
}

.ae-burger-line {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.ae-burger-line:nth-child(1),
.ae-burger-line:nth-child(3) {
  width: 22px;
}

.ae-burger-line:nth-child(2) {
  width: 16px;
}

.ae-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.ae-header-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ae-btn {
  border: none;
  border-radius: var(--ae-radius-pill);
  padding: 12px 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ae-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.ae-btn-primary {
  position: relative;
  background: linear-gradient(120deg, var(--ae-primary), var(--ae-secondary), var(--ae-primary));
  background-size: 200% 200%;
  color: #050307;
  box-shadow: 0 20px 40px rgba(246, 76, 255, 0.35);
  animation: ae-btn-gradient-wave 4s ease infinite;
  text-decoration: none;
}
.ae-btn-outline {
  background: transparent;
  border: 1px solid var(--ae-border);
  text-decoration: none;
}
.ae-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
}

.ae-btn:hover {
  transform: translateY(-2px);
}

.ae-btn-premium {
  background: linear-gradient(135deg, var(--ae-primary), var(--ae-secondary));
  color: #000;
}

.ae-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: min(420px, 100%);
  padding: 8px 10px 8px 16px;
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-pill);
  background: var(--ae-panel-strong);
}

.ae-search:focus-within {
  border-color: var(--ae-secondary);
  box-shadow: 0 0 0 2px rgba(255, 111, 60, 0.25);
}

.ae-search-input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ae-text);
  font-size: 0.95rem;
}

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

.ae-search-button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--ae-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ae-hero {
  margin-top: 50px;
  padding: clamp(36px, 5vw, 70px);
  background: linear-gradient(130deg, rgba(246, 76, 255, 0.08), rgba(89, 255, 205, 0.08));
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  box-shadow: var(--ae-shadow-soft);
  overflow: hidden;
}

.ae-footer {
  margin-top: 64px;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--ae-border);
  flex-wrap: wrap;
  gap: 16px;
}

.ae-footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}

.ae-footer-links li {
  list-style: disc;
  margin-right: 10px;
}

.ae-footer-links a {
  text-decoration: none;
  color: var(--ae-text-muted);
  font-weight: 500;
}
.ae-footer-links a:hover,
.ae-footer-links a:focus-visible {
  color: var(--ae-primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.ae-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 998;
}

.ae-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: min(82vw, 320px);
  height: 100vh;
  background: var(--ae-bg);
  border-right: 1px solid var(--ae-border);
  box-shadow: var(--ae-shadow-soft);
  transform: translateX(-105%);
  transition: transform 0.28s ease;
  z-index: 999;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ae-mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.ae-mobile-menu-link {
  color: var(--ae-text);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--ae-panel-strong);
}

.ae-mobile-menu-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  padding-top: 16px;
  flex-wrap: wrap;
}

.ae-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--ae-radius-pill);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--ae-border);
}

.ae-header-btn-secondary {
  background: transparent;
  color: var(--ae-text);
}

.ae-header-btn-primary {
  background: var(--ae-primary);
  color: #fff;
}

.ae-mobile-menu.ae-is-open {
  transform: translateX(0);
}

.ae-mobile-overlay.ae-is-open {
  opacity: 1;
  pointer-events: auto;
}

.ae-no-scroll {
  overflow: hidden;
}
.ae-mobile-search {
  display: none;
}
.ae-hero-inner{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 48px); 
}
.ae-hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.3rem);
  font-family: var(--ae-font-display);
  margin: 12px 0;
  line-height: 1.1;
}
.ae-overline,.ae-studio-hero-copy .ae-overline,.ae-pricing-headline .ae-overline{
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ae-secondary) !important;
    font-weight: 600;
}
.ae-hero-body {
    color: var(--ae-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 540px;
    letter-spacing: 0.2px;
}
.ae-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.ae-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 18px;
    margin-top: 45px;
}
.ae-hero-stats dt {
  color: var(--ae-text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.ae-hero-stats dd {
  margin: 8px 0 0;
  font-size: 1.6rem;
  font-weight: 600;
}
.ae-hero-reel {
    position: relative;
    min-height: 320px;
    top: -43px;
	display: flex;
	gap: 18px;
	margin-top: 32px;	
}
.ae-floating-card {
  position: absolute;
  background: var(--ae-panel-strong);
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-lg);
  padding: 16px;
  width: clamp(200px, 45%, 260px);
  box-shadow: var(--ae-shadow-soft);
  z-index: 77;
}
.ae-floating-card-one {
    top: 14%;
    left: 1%;
    animation: ae-float 8s ease-in-out infinite;
}

.ae-floating-card-two {
  top: 18%;
  right: 0;
  animation: ae-float 7s ease-in-out infinite;
}

.ae-floating-card-three {
  bottom: 0;
  left: 30%;
  animation: ae-float 9s ease-in-out infinite;
}
.ae-floating-link {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: var(--ae-radius-md);
}

.ae-floating-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}
.ae-floating-img:hover {
	opacity: 0.9;
}

.ae-tags {
    margin-top: 55px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.ae-chip {
  border-radius: var(--ae-radius-pill);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ae-text);
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
}
.ae-chip a {
  text-decoration:none;
}
.ae-chip:hover {
  border-color: var(--ae-primary);	
}

.ae-chip-active {
  background: var(--ae-primary-soft);
  border-color: var(--ae-primary);
  color: #fff;
}
.ae-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 20px;
  justify-content: start;
}
.ae-grid-fill {
 grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
}
.ae-grid-creator {
  margin-top: 0;
}

.ae-related-grid {
  width: 100%;
  margin-top: 32px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.ae-related-grid > * {
  min-width: 0;
  width: 100%;
  height: 100%;
}

/* если DLE вдруг выводит внутреннюю обёртку */
.ae-related-grid .ae-related-grid-inner {
  display: contents;
}

/* карточки внутри блока — одинаковая высота */
.ae-related-grid .ae-card {
  height: 100%;
}

/* делаем саму карточку вертикальным flex-контейнером */
.ae-related-grid .ae-card {
  display: flex;
  flex-direction: column;
}

/* медиа-блок занимает фиксированную часть высоты */
.ae-related-grid .ae-card-media {
  flex: 0 0 auto;
}

/* тело карточки растягивается */
.ae-related-grid .ae-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

/* адаптив: 3-2-1 */
@media (max-width: 1200px) {
  .ae-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ae-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .ae-related-grid {
    grid-template-columns: 1fr;
  }
}

.ae-card {
  background: var(--ae-panel);
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-lg);
  overflow: hidden;
  box-shadow: var(--ae-shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease;
  width: 100%;
  margin: 0;
  max-width: 370px;
}

@media (max-width: 767px) {
  .ae-grid {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .ae-card {
    max-width: 100%;
  }
}

.ae-card:hover {
  transform: translateY(-8px);
  border-color: var(--ae-primary);
}

.ae-card-media {
  height: 490px;
  border-radius: var(--ae-radius-lg);
  display: inline-block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ae-actions-card {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  z-index: 2;
}
.ae-action-pill {
  --ae-action-size: 47px;
    flex-direction: row-reverse;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: var(--ae-action-size);
  height: var(--ae-action-size);
  padding: 9px 9px 10px 20px;
  border-radius: var(--ae-radius-pill);
  background: rgba(7, 6, 14, 0.65);
  color: var(--ae-text);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  gap: 12px;
  transition: width 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(6px);
}
.ae-action-pill button {
  border: none;
  background: transparent;
}

.ae-action-pill > .ae-action-icon {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ae-action-pill > .ae-action-icon-del {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ae-action-icon-del {
  color: #ffd700;	
}
.ae-action-pill svg {
  width: 100%;
  height: 100%;
}
.ae-action-label {
  white-space: nowrap;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: none;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ae-action-pill:hover,
.ae-action-pill:focus-visible {
  width: fit-content;
  background: var(--ae-secondary);
  color: #050307;
  border-color: transparent;
  outline: none;
}

.ae-action-pill:hover .ae-action-label,
.ae-action-pill:focus-visible .ae-action-label {
  opacity: 1;
  transform: translateX(0);
}
.ae-action-pill-favorite {
  border-color: rgba(255, 255, 255, 0.4);
}

.ae-action-pill-favorite.ae-action-pill-active {
  background:var(--ae-secondary);
  color: #120306;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(255, 111, 60, 0.35);
}
.ae-card-body {
  padding: 18px 22px 26px;
}
.ae-card-body h2 {
  margin: 16px 0 8px;
  font-size: 1.25rem;
    font-weight: 400;
}

.ae-card-body p {
    margin: 0;
    color: var(--ae-text-muted);
    font-weight: 500;
}
.ae-card-badge {
  display: inline-block;
  max-width: 300px;
  padding: 6px 12px;
  border-radius: var(--ae-radius-pill);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ae-card-duration a {
  text-decoration: none;
}
.ae-floating-caption a {
  text-decoration: none;	
}
.ae-banner-error {
  margin-top: 36px;
  border-radius: var(--ae-radius-xl);
  border: 1px solid var(--ae-border);
  background: radial-gradient(circle at top, rgba(246, 76, 255, 0.2), rgba(7, 3, 10, 0.9));
  padding: clamp(32px, 4vw, 48px);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.ae-banner-error p {
  width: 90%;
  color: var(--ae-text-muted);
  font-size: 1.1rem;
}

.ae-banner-error .ae-overline-error{
    font-size: 14px;
}
.ae-banner-error h3{
    font-weight: 600;
    padding-bottom: 10px;
    padding-top: 10px;
    letter-spacing: 0.6px;
    font-size: 32px;
}

.ae-static-entry-card {
  width: 66.666%;
  margin: 0 auto;
  margin-top:48px;
  padding: 30px;
  border-radius: var(--ae-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ae-panel);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.clouds_xsmall, .clouds_xlarge, .clouds_medium, .clouds_small, .clouds_large {
  display: inline-flex;
  align-items: center;
  border-radius: var(--ae-radius-pill);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ae-text);
  padding: 10px 20px;
  font-weight: 500;
  cursor: pointer;
  margin-right: 0;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
}
.clouds_xsmall a, .clouds_xlarge a, .clouds_medium a, .clouds_small a {
	text-decoration:none;
}
.ae-content-tag {
  margin-top: 50px;
  padding: clamp(36px, 5vw, 70px);
  padding-top: 30px;
  background: linear-gradient(130deg, rgba(246, 76, 255, 0.08), rgba(89, 255, 205, 0.08));
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  box-shadow: var(--ae-shadow-soft);
  overflow: hidden;
}

.ae-content-tag > div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  row-gap: 12px;
}

.ae-content-tag h1 {
  padding-bottom: 40px;
}

.ae-creator-hero {
  margin-top: 32px;
  margin-bottom: 28px;
  display: grid;
  gap: 50px;
  align-items: start;
  grid-template-columns: minmax(240px, 360px) minmax(320px, 1fr);
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  background: linear-gradient(130deg, rgba(246, 76, 255, 0.08), rgba(89, 255, 205, 0.08));
  width: 100%;
  grid-column: 1 / -1;
}
.ae-creator-hero-registr {
  margin-top: 50px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  background: linear-gradient(130deg, rgba(246, 76, 255, 0.08), rgba(89, 255, 205, 0.08));
  width: 100%;
  grid-column: 1 / -1;
  box-sizing: border-box;
}
.page_form__form {
  display: grid;
  gap: 18px;
}

.regtext {
  padding: 18px 20px;
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ae-text-muted);
  line-height: 1.7;
}

.regtext b {
  color: var(--ae-text);
}

.page_form__form .ui-form {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.page_form__form .ui-form > li {
  margin: 0;
  padding: 0;
}

.page_form__form label {
  display: block;
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: var(--ae-text-muted);
}

.page_form__form input[type="text"],
.page_form__form input[type="password"],
.page_form__form input[type="email"],
.page_form__form input[type="file"] {
  width: 100%;
  border: 0 !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ae-text);
  border-radius: var(--ae-radius-pill);
  padding: 14px 16px;
  font-size: 0.95rem;
  box-shadow: none !important;
  box-sizing: border-box;
}

.page_form__form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.page_form__form input:focus {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(255, 111, 60, 0.25);
}

.page_form__form .c-captcha {
  display: grid;
  gap: 12px;
}

.page_form__form #result-registration {
  margin-top: 10px;
  color: var(--ae-secondary);
  font-size: 0.9rem;
}

.page_form__form .form_submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.page_form__form .form_submit .btn {
  border: 0;
  border-radius: var(--ae-radius-pill);
  padding: 12px 24px;
  background: linear-gradient(120deg, var(--ae-primary), var(--ae-secondary));
  color: #050307;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page_form__form .form_submit .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(246, 76, 255, 0.25);
}

@media (max-width: 640px) {
  .page_form__form .form_submit {
    justify-content: stretch;
  }

  .page_form__form .form_submit .btn {
    width: 100%;
  }
}
.page_form__form {
  display: grid;
  gap: 18px;
}

.page_form__form .ui-form {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.page_form__form .ui-form > li {
  margin: 0;
  padding: 0;
}

.page_form__form label {
  display: block;
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: var(--ae-text-muted);
}

.page_form__form input[type="text"] {
  width: 100%;
  border: 0 !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ae-text);
  border-radius: var(--ae-radius-pill);
  padding: 14px 16px;
  font-size: 0.95rem;
  box-shadow: none !important;
  box-sizing: border-box;
}

.page_form__form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.page_form__form input:focus {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(255, 111, 60, 0.25);
}

.page_form__form .c-captcha {
  display: grid;
  gap: 12px;
}

.page_form__form .form_submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.page_form__form .form_submit .btn {
  border: 0;
  border-radius: var(--ae-radius-pill);
  padding: 12px 24px;
  background: linear-gradient(120deg, var(--ae-primary), var(--ae-secondary));
  color: #050307;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page_form__form .form_submit .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(246, 76, 255, 0.25);
}

@media (max-width: 640px) {
  .page_form__form .form_submit {
    justify-content: stretch;
  }

  .page_form__form .form_submit .btn {
    width: 100%;
  }
}
.userinfo_top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.user_tab {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.user_tab li {
  margin: 0;
}

.user_tab a,
.user_tab li {
  display: inline-flex;
  align-items: center;
}

.user_tab a {
  padding: 10px 18px;
  border-radius: var(--ae-radius-pill);
  border: 1px solid var(--ae-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ae-text);
  text-decoration: none;
  transition: 0.2s ease;
}

.user_tab li.active a {
  background: var(--ae-primary-soft);
  border-color: var(--ae-primary);
  color: #fff;
}

.user_tab a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.userinfo_top .avatar {
  width: 150px;
  height: 150px;
}

.userinfo_top .avatar a,
.userinfo_top .avatar .cover {
  display: block;
  width: 100%;
  height: 100%;
}

.userinfo_top .avatar .cover {
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--ae-border);
  box-shadow: var(--ae-shadow-soft);
}

.usinf {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.usinf li {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.ui-c1 {
  color: var(--ae-text-muted);
}

.ui-c2 {
  color: var(--ae-text);
}

.addform {
  display: grid;
  gap: 18px;
}

.addform .ui-form {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.addform .ui-form > li {
  margin: 0;
  padding: 0;
}

.addform label {
  display: block;
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: var(--ae-text-muted);
}

.addform input[type="text"],
.addform input[type="email"],
.addform input[type="password"],
.addform input[type="file"] {
  width: 100%;
  border: 0 !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ae-text);
  border-radius: var(--ae-radius-pill);
  padding: 14px 16px;
  font-size: 0.95rem;
  box-shadow: none !important;
  box-sizing: border-box;
}

.addform input:focus {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(255, 111, 60, 0.25);
}

.addform .checkbox {
  color: var(--ae-text-muted);
}

.addform fieldset {
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.addform legend {
  padding: 0 10px;
  color: var(--ae-text-muted);
  font-size: 0.92rem;
}

.soc_links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.soc_links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--ae-radius-pill);
  border: 1px solid var(--ae-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ae-text);
  text-decoration: none;
  transition: 0.2s ease;
}

.soc_links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.soc_links img {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display: block;
}

.addform .form_submit {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.addform .form_submit .btn-big {
  border: 0;
  border-radius: var(--ae-radius-pill);
  padding: 12px 24px;
  background: linear-gradient(120deg, var(--ae-primary), var(--ae-secondary));
  color: #050307;
  font-weight: 600;
  cursor: pointer;
}

.addform .form_submit [delete] {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: var(--ae-radius-pill);
  border: 1px solid var(--ae-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ae-text);
}

@media (max-width: 768px) {
  .userinfo_top {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .userinfo_top .avatar {
    width: 120px;
    height: 120px;
  }

  .usinf li {
    grid-template-columns: 1fr;
  }

  .addform .form_submit {
    flex-direction: column;
    align-items: stretch;
  }

  .addform .form_submit .btn-big,
  .addform .form_submit [delete] {
    width: 100%;
    justify-content: center;
  }
}

.ae-creator-hero-screens {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  background: linear-gradient(130deg, rgba(246, 76, 255, 0.08), rgba(89, 255, 205, 0.08));
  width: 100%;
  grid-column: 1 / -1;
  box-sizing: border-box;
}
.ae-jcc {
    justify-content: center!important;
    text-align: center;

}
.ae-sep {
  width: 100%;
  padding: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

#fullsearch {
  width: 100%;
  grid-column: 1 / -1;
  box-sizing: border-box;	
}
.searchtable {
  width: 100%;
}

.searchtable table {
  width: 100% !important;
  border-collapse: collapse;
}

.searchtable td.search {
  padding: 0;
}

.searchtable .search {
  margin-top: 16px;
}

.searchtable input[type="text"],
.searchtable input[type="search"] {
  width: 100%;
  border: 0 !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ae-text);
  border-radius: var(--ae-radius-pill);
  padding: 14px 16px;
  font-size: 0.95rem;
  box-shadow: none !important;
  box-sizing: border-box;
}

.searchtable input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.searchtable input:focus {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(255, 111, 60, 0.25);
}

.searchtable .bbcodes,
.searchtable input[type="button"]#dosearch {
  margin-top: 14px;
  border: 0;
  border-radius: var(--ae-radius-pill);
  padding: 12px 22px;
  background: linear-gradient(120deg, var(--ae-primary), var(--ae-secondary));
  color: #050307;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.searchtable .bbcodes:hover,
.searchtable input[type="button"]#dosearch:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(246, 76, 255, 0.25);
}

.search_result_num {
  margin-top: 16px;
  padding: 16px 20px;
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-lg);
  background: var(--ae-panel);
  color: var(--ae-text-muted);
}
.xfieldimagegallery,
.comments-image-gallery {
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.ae-creator-hero-comments {
  margin-bottom: 48px;
  width: 100%;
  grid-column: 1 / -1;
  box-sizing: border-box;
}
.ae-creator-hero-tags {
  width: 100%;
  grid-column: 1 / -1;
  box-sizing: border-box;
}

.ae-navigation {
  width: 100%;
  grid-column: 1 / -1;
  box-sizing: border-box;
}
.pages-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.page_prev,
.page_next {
  display: inline-flex;
  align-items: center;
}

.page_prev a,
.page_next a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 48px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--ae-radius-pill);
  border: 1px solid var(--ae-border);
  background: var(--ae-panel);
  color: var(--ae-text);
  text-decoration: none;
  box-shadow: var(--ae-shadow-soft);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.page_prev a:hover,
.page_next a:hover {
  transform: translateY(-2px);
  background: var(--ae-panel-strong);
  border-color: var(--ae-primary);
}

.page_prev svg,
.page_next svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

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

.pages a,
.pages span,
.pages .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: var(--ae-radius-pill);
  border: 1px solid var(--ae-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ae-text);
  text-decoration: none;
  transition: 0.2s ease;
}

.pages a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--ae-primary);
}

.pages .current,
.pages span.current {
  background: var(--ae-primary-soft);
  border-color: var(--ae-primary);
  color: #fff;
}
.ae-creator-hero-media {
  position: relative;
  max-width: 420px;
  display: block;
}

.ae-creator-hero-poster {
  border-radius: var(--ae-radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ae-panel);
  box-shadow: var(--ae-shadow-soft);
}

.ae-creator-hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ae-creator-hero-actions {
	display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: -25px;
    justify-content: center;
}
.ae-creator-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.7;
  justify-content: flex-start;
}

.ae-creator-hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 0;
  letter-spacing: 1px;
}
.ae-hero-insights {
	display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 5px;
}
.mb20 {
	margin-bottom:20px;
}
.ae-hero-insights > .ae-overline {
  margin-bottom: 4px;
}
.ae-hero-insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}



.ae-hero-insights-grid div:hover::after,
.ae-hero-insights-grid div:focus-within::after {
  opacity: 1;
}

.ae-hero-insights-grid dt {
  margin: 0 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ae-hero-insights-grid dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ae-text);
    padding-left: 46px;
    padding-bottom: 0;
    position: relative;
    top: -10px;
    font-weight: normal;
}

.ae-hero-insights-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  color: var(--ae-secondary);
    display: inline-flex;
    width: 34px;
    height: 34px;
    color: var(--ae-secondary);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    position: relative;
    top: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.ae-hero-insights-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.8;
}
.ae-attachment {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  justify-content: center;
  padding:20px;
  border-radius: var(--ae-radius-xl);
  display: inline-block;
}
.ae-attachment1 {

}

.ae-att {
 justify-content: center;	
}

.addcomment,
#addcomment,
.box,
.box_in {
  width: 100%;
}

#addcomment {
  margin-top: 32px;
}

#addcomment .box_in {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  background: var(--ae-panel-strong);
  box-shadow: var(--ae-shadow-soft);
}

#addcomment h3 {
  margin: 0 0 20px;
  font-size: 1.4rem;
  line-height: 1.2;
}

#addcomment .ui-form {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

#addcomment .ui-form > li {
  margin: 0;
  padding: 0;
}

#addcomment .form-group.combo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

#addcomment input,
#addcomment select {
  width: 100%;
  border: 0 !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ae-text);
  border-radius: var(--ae-radius-pill);
  padding: 14px 16px;
  font-size: 0.95rem;
  box-sizing: border-box;
  box-shadow: none !important;
}

#addcomment textarea {
  width: 100%;
  border: 0 !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ae-text);
  border-radius: 25px;
  padding: 14px 16px;
  font-size: 0.95rem;
  box-sizing: border-box;
  box-shadow: none !important;
  margin-bottom: 20px;
}

#addcomment input::placeholder,
#addcomment textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

#addcomment input:focus,
#addcomment textarea:focus,
#addcomment select:focus {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(255, 111, 60, 0.25);
}

#addcomment label {
  display: block;
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: var(--ae-muted);
}

#comment-editor {
  padding: 0;
}

#comment-editor .bb-editor,
#comment-editor textarea {
  width: 100%;
  min-height: 180px;
}

#addcomment .c-captcha {
  display: grid;
  gap: 12px;
}

#addcomment .form_submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

#addcomment .ae-btn {
  min-height: 46px;
}

@media (max-width: 640px) {
  #addcomment .form-group.combo {
    grid-template-columns: 1fr;
  }

  #addcomment .form_submit {
    flex-direction: column;
    align-items: stretch;
  }

  #addcomment .ae-btn {
    width: 100%;
  }
}
.comment {
  margin-top: 16px;
  margin-bottom: 20px;
  padding: 22px;
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  background: var(--ae-panel);
  box-shadow: var(--ae-shadow-soft);
}
.comment-num {
  margin-top: 16px;
  margin-bottom: 20px;
  padding: 5px 15px 5px 25px;
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  background: var(--ae-panel);
  box-shadow: var(--ae-shadow-soft);	
}
.tags-fullstory {
  padding: 24px 15px 24px 24px;
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  background: linear-gradient(130deg, rgba(246, 76, 255, 0.08), rgba(89, 255, 205, 0.08));
  width: 100%;
  grid-column: 1 / -1;
  box-sizing: border-box;  
}
.comment:first-child {
  margin-top: 0;
}

.comment .com_info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.comment .com_user {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comment .com_user .name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ae-text);
}

.comment .grey {
  color: var(--ae-muted);
  font-size: 0.88rem;
}

.comment .meta {
  flex-shrink: 0;
}

.comment .meta .left {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.comment .meta .left li {
  margin: 0;
}

.comment .meta .left a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--ae-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ae-muted);
  transition: 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.comment .meta .left a:hover
 {
  border-color: var(--ae-secondary);
  color: var(--ae-text);
  background: rgba(255, 255, 255, 0.08);
}

.comment .meta .left svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.comment .com_content {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.comment .com_content .title {
  margin: 0 0 12px;
  font-size: 1rem;
}

.comment .com_content .text {
  color: var(--ae-text);
  line-height: 1.65;
}

.comment .com_content .text p {
  margin: 0 0 12px;
}

.comment .com_content .text p:last-child {
  margin-bottom: 0;
}
.ae-category-description {
  margin-top: 16px;
  margin-bottom: 20px;
  padding: 22px;
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  background: var(--ae-panel);
  box-shadow: var(--ae-shadow-soft);
}
.ae-category-description p {
 font-size: 1rem;	
}
.ae-category-description h1 {
  padding-top: 0px;
  margin-top: 0px; 
}
.ae-user-menu {
  position: relative;
  display: inline-flex;
  z-index: 1000;
}

.ae-user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 240px;
  padding: 10px;
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  background: var(--ae-panel-strong);
  box-shadow: var(--ae-shadow-soft);
  backdrop-filter: blur(16px);
  display: none;
  z-index: 1001;
}
.ae-header-right,
.ae-header-actions {
  position: relative;
  z-index: 2000;
}

.ae-user-menu.is-open .ae-user-dropdown {
  display: block;
  animation: ae-dropdown-in 0.2s ease;
}

.ae-user-dropdown-link,
.ae-user-dropdown .drop-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.ae-user-dropdown .drop-heading {
  margin: 8px 8px 10px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ae-text-muted);
}

.ae-user-dropdown-link {
  padding: 11px 12px;
  border-radius: var(--ae-radius-lg);
  color: var(--ae-text);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ae-user-dropdown-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--ae-secondary);
}

.ae-user-dropdown-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@keyframes ae-dropdown-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ae-login-menu {
  position: relative;
  display: inline-flex;
  z-index: 1000;
}

.ae-login-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 320px;
  width: min(360px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  background: var(--ae-panel-strong);
  box-shadow: var(--ae-shadow-soft);
  backdrop-filter: blur(16px);
  display: none;
  z-index: 1001;
}

.ae-login-menu.is-open .ae-login-dropdown {
  display: block;
  animation: ae-dropdown-in 0.2s ease;
}

.ae-login-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.ae-login-toplink {
  color: var(--ae-secondary);
  text-decoration: none;
  font-size: 0.92rem;
}

.ae-login-toplink:hover {
  text-decoration: underline;
}

.ae-login-form {
  display: grid;
  gap: 14px;
}

.ae-login-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--ae-text-muted);
}

.ae-login-required {
  color: #ff7b7b;
}

.ae-login-field input[type="text"],
.ae-login-field input[type="password"] {
  width: 100%;
  border: 0 !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ae-text);
  border-radius: var(--ae-radius-pill);
  padding: 13px 16px;
  font-size: 0.95rem;
  box-shadow: none !important;
}

.ae-login-field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.ae-login-field input:focus {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(255, 111, 60, 0.25);
}

.ae-login-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ae-text-muted);
  font-size: 0.92rem;
  cursor: pointer;
}

.ae-login-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--ae-primary);
}

.ae-login-submit {
  width: 100%;
  margin-top: 4px;
}

.ae-login-social {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ae-login-social .drop-heading {
  margin: 0 0 12px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ae-text-muted);
}

.ae-login-social-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.ae-login-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.ae-login-social-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.ae-login-social-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ae-btn-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  line-height: 0;
}
.ae-user-menu-toggle {
  align-items: center;
  justify-content: center;
}

.ae-cookie {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  width: min(720px, calc(100vw - 24px));
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ae-cookie.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.ae-cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  background: var(--ae-panel-strong);
  box-shadow: var(--ae-shadow-soft);
  backdrop-filter: blur(16px);
}

.ae-cookie__text strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ae-text);
  font-size: 1rem;
}

.ae-cookie__text p {
  margin: 0;
  color: var(--ae-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.ae-cookie__btn {
  border: 0;
  border-radius: var(--ae-radius-pill);
  padding: 12px 20px;
  background: linear-gradient(120deg, var(--ae-primary), var(--ae-secondary));
  color: #050307;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ae-cookie__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(246, 76, 255, 0.25);
}

@media (max-width: 640px) {
  .ae-cookie {
    bottom: 16px;
  }

  .ae-cookie__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .ae-cookie__btn {
    width: 100%;
  }
}
.stats_head ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  padding-bottom:20px;
}

.stats_head li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-lg);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ae-text-muted);
  line-height: 1.5;
}

.stats_head li b {
  flex: 0 0 auto;
  color: var(--ae-text);
}

.stats_head li span {
  color: var(--ae-text-muted);
}

.stats_head .stats_d {
  border-left: 3px solid var(--ae-primary);
}

.stats_head .stats_w {
  border-left: 3px solid var(--ae-secondary);
}

.stats_head .stats_m {
  border-left: 3px solid #ffd700;
}

.statistics {
  display: grid;
  gap: 18px;
}

.stat_group {
  padding: 18px;
  border: 1px solid var(--ae-border);
  border-radius: var(--ae-radius-xl);
  background: rgba(255, 255, 255, 0.04);
}

.stat_group h5 {
  margin: 0 0 14px;
  font-size: 1rem;
  color: var(--ae-text);
}

.stat_group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.stat_group li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--ae-radius-lg);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ae-text-muted);
}

.stat_group li b.right {
  color: var(--ae-text);
  font-weight: 700;
  white-space: nowrap;
}

.stat_group a {
  color: var(--ae-secondary);
  text-decoration: none;
}

.stat_group a:hover {
  text-decoration: underline;
}

.statistics .grey {
  margin-top: 8px;
  color: var(--ae-text-muted);
}

.table_top_users {
  margin-top: 18px;
  overflow-x: auto;
}

.userstop {
  width: 100%;
  border-collapse: collapse;
}

.userstop tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.userstop td,
.userstop th {
  padding: 12px 14px;
  color: var(--ae-text);
}

.userstop a {
  color: var(--ae-secondary);
  text-decoration: none;
}

.userstop a:hover {
  text-decoration: underline;
}

.ae-creator-hero-copy > p.ae-overline {
	padding-bottom:0px!important;
	margin-bottom:0px!important;
	margin-top:0px!important;
}

@media (max-width: 960px) {
  .ae-user-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.ae-btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  
}
.ae-mobile-menu-actions {
  display: none;
}

@media (max-width: 960px) {
  .ae-btn-label {
    display: none;
  }

  .ae-btn-icon {
    display: inline-flex;

  }
.ae-btn-ghost {
  margin-top:-15px;
}
  .ae-btn-signin {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
  }
.ae-header-left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }

  .ae-logo {
    flex: 1;
  }

  .ae-burger {
    margin-left: auto;
  }

  .ae-mobile-menu-actions {
    margin-left: 10px;
  }  
  
}

@media (max-width: 640px) {
  .comment .com_info {
    flex-direction: column;
  }

  .comment .meta .left {
    width: 100%;
  }
}

@media (max-width: 1600px) {
    .ae-hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 2.3rem);
}
}

@media (max-width: 1290px) {
  .ae-hero-reel {
    display: none;
  }
    .ae-hero-inner {
    grid-template-columns: none;
}
    .ae-hero-inner .ae-hero-reel {
    min-height: auto;
    top: 0;
    margin: 0;
}
@media (max-width: 1530px) {
  .ae-page-creator .ae-creator-hero {
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  }

  .ae-page-creator .ae-hero-stats {
    grid-column: 1 / -1;
    display: flex;
  }
}
@media (max-width: 1500px) {
    .ae-hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 2.1rem);
}
}   

@media (max-width: 1100px) {
  .ae-left-nav {
    display: none;
  }

  .ae-app-shell {
    padding-left: 0;
  }

  .ae-content-shell {
    padding-left: 0;
  }
  .ae-creator-hero {
    grid-template-columns: minmax(0, 1fr);
  }  
}

@media (max-width: 960px) {
  .ae-mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 16px;
    flex-wrap: wrap;
  }
}

@media (max-width: 960px) {
  .ae-header-right {
    display: none;
  }

  .ae-burger {
    display: inline-flex;
  }

  .ae-header {
    flex-direction: column;
    align-items: stretch;
  }

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

  .ae-search {
    width: 100%;
    min-width: 0;
    margin-top: 12px;
  }
  .ae-mobile-search {
    display: flex;
  }  
}
@media (max-width: 900px) {
  .ae-header {
    flex-direction: row;
    align-items: flex-start;
  }

  .ae-cta-group {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .ae-floating-card {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin-bottom: 18px;
    animation: none;
  }

  .ae-hero {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .ae-static-entry-card {
    width: 100%;
  }
  .ae-page-creator .ae-creator-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .ae-page-creator .ae-hero-stats {
    width: 100%;
  }
    
    html .ae-page-creator .ae-hero-stats .ae-creator-meta {
        display: flex;
        flex-direction: column;
    }
    
    
    .ae-creator-hero-copy {
    padding-top: 30px;
}
    
    .ae-creator-hero-media {
    margin: 0 auto;
}  
}

@media (max-width: 540px) {
  .ae-logo-text {
    font-size: 1rem;
  }
  .ae-hero-stats {
    flex-direction: column;
  }  
}
@keyframes DLEPush-show {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

