* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #0a0a0a;
  color: #fff;
}

/* AGE GATE */
#ageGate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-box {
  background: #111;
  padding: 30px;
  border: 2px solid #ff2fd4;
  text-align: center;
  width: 90%;
  max-width: 400px;
}

.age-box h2 {
  color: #ff2fd4;
  margin-bottom: 10px;
}

.age-box button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.age-box button:first-child {
  background: #ff2fd4;
  color: #000;
}

.age-box .leave {
  background: #333;
  color: #fff;
}

/* HEADER */
header {
  padding: 20px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
}

header span {
  color: #ff2fd4;
}

.hero {
  position: relative;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('assets/logo.png') no-repeat center center;
  background-size: contain;     /* keeps aspect ratio */
  opacity: 0.15;                /* a little more visible */
  width: 100%;                  /* bigger than before */
  height: 100%;
  z-index: 0;                   /* behind text */
  pointer-events: none;         /* allows clicks on content */

  /* Neon glow effect */
  box-shadow: 0 0 60px rgba(160, 80, 255, 0.6),
              0 0 120px rgba(160, 80, 255, 0.4),
              0 0 200px rgba(160, 80, 255, 0.2);
  
  filter: drop-shadow(0 0 40px rgba(160, 80, 255, 0.6));
  
  /* Slow rotation for premium feel */
  animation: rotateLogo 60s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 1;               /* sits above the background logo */
  max-width: 800px;
  margin: auto;
  color: #fff;
}

/* MODELS */
.models {
  padding: 60px 20px;
  text-align: center;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.model-card {
  background: #111;
  padding: 15px;
  border: 1px solid #222;
}

.model-card img {
  width: 100%;
  margin-bottom: 10px;
}

.model-card h3 {
  color: #ff2fd4;
}

/* JOIN */
.join {
  padding: 60px 20px;
  text-align: center;
}

.join form {
  max-width: 400px;
  margin: auto;
}

.join input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.join button {
  width: 100%;
  padding: 12px;
  background: #ff2fd4;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #050505;
  text-align: center;
  padding: 20px;
  color: #777;
  font-size: 0.9rem;
}

/* Header & Nav Luxury Upgrade */
.site-header {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 47, 212, 0.3);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* needed for glow pseudo-element */
}

/* FIX: pseudo elements don't apply to <img>, so put glow behind header container */
.header-inner::after {
  content: "";
  position: absolute;
  inset: -10px -10px -10px -10px;
  margin: auto;
  width: 220px;
  height: 140px;
  left: 10px;          /* sit behind logo area */
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255,47,212,0.22), transparent 55%);
  border-radius: 24px;
  z-index: -1;
  pointer-events: none;
}

.logo {
  max-height: 120px; /* slightly bigger */
  width: auto;
  border-radius: 14px;

  /* STRONG glow to outline black letters */
  filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.6))   /* inner white edge */
    drop-shadow(0 0 25px rgba(190, 120, 255, 0.9))  /* purple core glow */
    drop-shadow(0 0 55px rgba(190, 120, 255, 0.7))  /* outer glow */
    drop-shadow(0 0 90px rgba(190, 120, 255, 0.45));/* aura */

  animation: headerPulseStrong 5s ease-in-out infinite;
  transition: transform 0.4s ease;
}

.logo:hover {
  transform: scale(1.08);
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  position: relative;
  transition: color 0.3s;
}

.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #ff2fd4;
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: #ff2fd4;
}

/* ========= NEW: Nav Buttons (Login/Logout) ========= */
.nav-login-btn,
.nav-logout-btn {
  appearance: none;
  border: 1px solid rgba(255, 47, 212, 0.35);
  background: rgba(255, 47, 212, 0.12);
  color: #fff;
  font-weight: bold;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.nav-login-btn:hover,
.nav-logout-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 47, 212, 0.18);
  border-color: rgba(255, 47, 212, 0.55);
}

.nav-logout-btn {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}
.nav-logout-btn:hover {
  background: rgba(255,255,255,0.12);
}

/* ========= NEW: Hero Actions Row ========= */
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}

.cta.secondary {
  display: inline-block;
  padding: 12px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 12px;
  text-decoration: none;
}
.cta.secondary:hover {
  background: rgba(255,255,255,0.12);
}

/* ========= NEW: Join Message ========= */
.join-msg {
  margin-top: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

/* ========= NEW: Contact Section (basic) ========= */
.contact {
  padding: 60px 20px;
  text-align: center;
}
.contact a {
  color: #ff2fd4;
  text-decoration: none;
}
.contact a:hover {
  text-decoration: underline;
}

/* ========= NEW: Modal Styles ========= */
.tn-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000; /* above header */
}

.tn-modal.show {
  display: flex;
}

.tn-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.tn-modal-card {
  position: relative;
  width: 92%;
  max-width: 520px;
  background: #111;
  border: 1px solid rgba(255, 47, 212, 0.35);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.7);
  z-index: 1;
}

.tn-modal-head {
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.tn-modal-head h3 {
  color: #ff2fd4;
  margin-bottom: 6px;
}

.tn-modal-head p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.tn-modal-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

.tn-modal-body {
  padding: 18px;
}

.tn-modal-body input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 12px;
}

.tn-login-submit {
  width: 100%;
  padding: 12px;
  background: #ff2fd4;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 12px;
}

.tn-demo-btn {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 12px;
}

.tn-alert {
  display: none;
  margin-top: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

/* ========= NEW: Mobile Menu ========= */
.menu-btn {
  display: none; /* shown on mobile below */
  border: 1px solid rgba(255, 47, 212, 0.35);
  background: rgba(255, 47, 212, 0.12);
  color: #fff;
  font-weight: bold;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 14px 20px;
  background: rgba(0,0,0,0.92);
  border-top: 1px solid rgba(255, 47, 212, 0.25);
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.mobile-menu a:hover {
  color: #ff2fd4;
}

/* Keep your hero logo animation */
@keyframes rotateLogo {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-logo {
  animation: rotateLogo 80s linear infinite,
  pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% {
    filter: drop-shadow(0 0 35px rgba(160, 80, 255, 0.5));
    box-shadow:
      0 0 50px rgba(160, 80, 255, 0.4),
      0 0 100px rgba(160, 80, 255, 0.25),
      0 0 160px rgba(160, 80, 255, 0.15);
  }
  50% {
    filter: drop-shadow(0 0 55px rgba(180, 100, 255, 0.8));
    box-shadow:
      0 0 80px rgba(180, 100, 255, 0.6),
      0 0 160px rgba(180, 100, 255, 0.4),
      0 0 240px rgba(180, 100, 255, 0.25);
  }
  100% {
    filter: drop-shadow(0 0 35px rgba(160, 80, 255, 0.5));
    box-shadow:
      0 0 50px rgba(160, 80, 255, 0.4),
      0 0 100px rgba(160, 80, 255, 0.25),
      0 0 160px rgba(160, 80, 255, 0.15);
  }
}

@keyframes headerPulseStrong {
  0% {
    filter:
      drop-shadow(0 0 4px rgba(255, 255, 255, 0.5))
      drop-shadow(0 0 22px rgba(180, 100, 255, 0.7))
      drop-shadow(0 0 45px rgba(180, 100, 255, 0.5))
      drop-shadow(0 0 80px rgba(180, 100, 255, 0.35));
  }
  50% {
    filter:
      drop-shadow(0 0 8px rgba(255, 255, 255, 0.8))
      drop-shadow(0 0 35px rgba(210, 140, 255, 1))
      drop-shadow(0 0 75px rgba(210, 140, 255, 0.75))
      drop-shadow(0 0 120px rgba(210, 140, 255, 0.55));
  }
  100% {
    filter:
      drop-shadow(0 0 4px rgba(255, 255, 255, 0.5))
      drop-shadow(0 0 22px rgba(180, 100, 255, 0.7))
      drop-shadow(0 0 45px rgba(180, 100, 255, 0.5))
      drop-shadow(0 0 80px rgba(180, 100, 255, 0.35));
  }
}

/* ========= Responsive ========= */
@media (max-width: 860px) {
  .main-nav {
    display: none; /* hide desktop nav */
  }
  .menu-btn {
    display: inline-block; /* show burger */
  }
}

/* ===== Members Page Add-ons ===== */
.members-page { padding: 30px 0 60px; }

.members-hero { padding: 40px 20px 10px; text-align: center; }
.members-hero-content { max-width: 900px; margin: 0 auto; }
.members-sub { margin-top: 10px; color: rgba(255,255,255,0.75); }

.members-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}
.member-badge {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 0.9rem;
}

.members-section { padding: 40px 20px; text-align: center; }
.members-note { margin-top: 10px; color: rgba(255,255,255,0.75); max-width: 900px; margin-left:auto; margin-right:auto; }

.member-feed {
  max-width: 900px;
  margin: 20px auto 0;
  display: grid;
  gap: 12px;
}

.feed-item {
  background: #111;
  border: 1px solid rgba(255,255,255,0.10);
  padding: 16px;
  border-radius: 14px;
  text-align: left;
}
.feed-title { font-weight: bold; color: #ff2fd4; }
.feed-date { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 6px; }
.feed-text { margin-top: 10px; color: rgba(255,255,255,0.78); line-height: 1.5; }
/* =========================
   TRANSNAUGHTY • UPLOAD PAGE
   ========================= */

.tn-body{
  min-height:100vh;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(170,70,255,.22), transparent 60%),
    radial-gradient(900px 520px at 90% 15%, rgba(70,120,255,.18), transparent 60%),
    radial-gradient(600px 420px at 70% 90%, rgba(190,90,255,.14), transparent 60%),
    #07070a;
  color:#fff;
}

/* TOP BAR */
.tn-topbar{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 18px;
  border-bottom:1px solid rgba(180,120,255,.18);
  background:rgba(10,10,15,.55);
  backdrop-filter: blur(14px);
}

.tn-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
}
.tn-logo{
  width:44px;
  height:44px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(180,120,255,.35);
  box-shadow: 0 0 20px rgba(160,90,255,.25);
}
.tn-brand-text{
  font-weight:800;
  letter-spacing:.5px;
}

/* HAMBURGER + MENU */
.tn-drop-wrap{ position:relative; }
#menuBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  border-radius:14px;
  border:1px solid rgba(180,120,255,.5);
  background:rgba(120,40,255,.15);
  color:#fff;
  font-size:22px;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
  box-shadow:0 0 18px rgba(150,80,255,.28);
}
#menuBtn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 26px rgba(150,80,255,.38);
}

.tn-menu{
  position:absolute;
  right:0;
  top:58px;
  width:220px;
  padding:10px;
  border-radius:16px;
  border:1px solid rgba(180,120,255,.25);
  background:rgba(10,10,16,.92);
  backdrop-filter: blur(14px);
  box-shadow:0 18px 60px rgba(0,0,0,.55);
  display:none;
}
.tn-menu.open{ display:block; }

.tn-menu a,
.tn-menu button{
  width:100%;
  display:flex;
  justify-content:flex-start;
  gap:10px;
  padding:12px 12px;
  border-radius:12px;
  color:#fff;
  text-decoration:none;
  background:transparent;
  border:none;
  cursor:pointer;
  font-size:15px;
}
.tn-menu a:hover,
.tn-menu button:hover{
  background:rgba(160,90,255,.18);
}
.tn-menu a.active{
  background:rgba(160,90,255,.22);
  border:1px solid rgba(180,120,255,.25);
}
.tn-menu .danger{
  color:#ffd6ef;
  background:rgba(255,70,170,.12);
}
.tn-menu .danger:hover{
  background:rgba(255,70,170,.18);
}

/* LAYOUT */
.tn-wrap{ padding:26px 18px 60px; }
.tn-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 360px 1fr;
  gap:18px;
}
@media (max-width: 980px){
  .tn-grid{ grid-template-columns:1fr; }
}

/* SIDE */
.tn-side-card{
  border-radius:22px;
  border:1px solid rgba(180,120,255,.18);
  background:rgba(10,10,16,.55);
  backdrop-filter: blur(14px);
  padding:18px;
  box-shadow: 0 0 30px rgba(150,80,255,.12);
  position:sticky;
  top:92px;
}
@media (max-width:980px){
  .tn-side-card{ position:relative; top:auto; }
}

.tn-side-logo{
  width:100%;
  display:flex;
  justify-content:flex-start;
  margin-bottom:12px;
}
.tn-side-logo img{
  width:140px;
  max-width:70%;
  border-radius:22px;
  border:1px solid rgba(180,120,255,.25);
  box-shadow: 0 0 40px rgba(160,90,255,.18);
}

.tn-side-title{
  font-size:26px;
  margin:6px 0 6px;
}
.tn-side-sub{
  opacity:.86;
  line-height:1.4;
  margin-bottom:14px;
}
.tn-side-badges{ display:flex; flex-wrap:wrap; gap:8px; }
.badge{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(180,120,255,.22);
  background:rgba(160,90,255,.12);
  font-size:12px;
  opacity:.95;
}

.tn-side-note{
  display:flex;
  gap:10px;
  margin-top:16px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(180,120,255,.18);
  background:rgba(0,0,0,.22);
}
.note-dot{
  width:10px; height:10px;
  border-radius:50%;
  margin-top:6px;
  background:rgba(200,120,255,.9);
  box-shadow:0 0 18px rgba(200,120,255,.55);
}
.note-title{ font-weight:800; }
.note-text{ opacity:.85; font-size:14px; margin-top:2px; }

/* CARDS */
.card{
  border-radius:22px;
  border:1px solid rgba(180,120,255,.18);
  background:rgba(10,10,16,.55);
  backdrop-filter: blur(14px);
  padding:18px;
  box-shadow:0 18px 70px rgba(0,0,0,.35);
}
.card.glow{
  box-shadow:
    0 18px 70px rgba(0,0,0,.40),
    0 0 36px rgba(160,90,255,.16);
}
.card-head h1{ margin:0 0 6px; font-size:28px; }
.card-head p{ margin:0; opacity:.85; }
.card-head.slim h2{ margin:0 0 6px; font-size:20px; }
.card-head.slim p{ margin:0; opacity:.82; font-size:14px; }
.mt{ margin-top:16px; }

/* FORM */
.tn-form{ margin-top:14px; }
.row.two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
@media (max-width:680px){
  .row.two{ grid-template-columns:1fr; }
}
.field{ margin-bottom:12px; }
.field label{
  display:block;
  margin-bottom:8px;
  font-weight:700;
  opacity:.95;
}
.field input,
.field textarea,
.field select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(180,120,255,.22);
  background:rgba(0,0,0,.28);
  color:#fff;
  outline:none;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus{
  border-color: rgba(200,140,255,.55);
  box-shadow:0 0 0 3px rgba(160,90,255,.20);
}
.hint{
  margin-top:6px;
  font-size:12px;
  opacity:.72;
}

/* DROPBOX */
.dropbox{
  position:relative;
  border-radius:18px;
  border:1px dashed rgba(200,140,255,.40);
  background:rgba(160,90,255,.08);
  padding:14px;
  cursor:pointer;
  overflow:hidden;
}
.dropbox.dragover{
  border-color: rgba(220,160,255,.85);
  box-shadow:0 0 0 3px rgba(160,90,255,.25);
}
.dropbox input[type="file"]{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
}
.drop-ui{
  display:flex;
  gap:12px;
  align-items:center;
  min-height:78px;
}
.drop-icon{
  width:52px; height:52px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.28);
  border:1px solid rgba(180,120,255,.18);
  box-shadow:0 0 18px rgba(160,90,255,.18);
  font-size:22px;
}
.drop-text strong{ display:block; margin-bottom:4px; }
.drop-sub{ opacity:.75; font-size:12px; }

.preview{
  display:none;
  width:100%;
  margin-top:12px;
  border-radius:16px;
  border:1px solid rgba(180,120,255,.18);
}

.filemeta{
  margin-top:12px;
  font-size:13px;
  opacity:.85;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(180,120,255,.14);
  padding:10px 12px;
  border-radius:14px;
  display:none;
}

/* BUTTONS */
.actions{
  display:flex;
  gap:10px;
  margin-top:8px;
}
.btn{
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(180,120,255,.25);
  background:rgba(0,0,0,.25);
  color:#fff;
  cursor:pointer;
  font-weight:800;
  transition:transform .2s ease, box-shadow .2s ease;
}
.btn:hover{
  transform:translateY(-1px);
  box-shadow:0 0 22px rgba(160,90,255,.20);
}
.btn.primary{
  background: linear-gradient(135deg, rgba(170,70,255,.70), rgba(90,130,255,.55));
  border-color: rgba(220,160,255,.35);
}
.btn.ghost{
  background:rgba(0,0,0,.18);
}

/* STATUS */
.status{
  margin-top:12px;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(180,120,255,.18);
  background:rgba(0,0,0,.22);
  display:none;
}
.status.ok{
  display:block;
  border-color: rgba(120,255,200,.28);
}
.status.bad{
  display:block;
  border-color: rgba(255,120,180,.28);
}

/* UPLOADS LIST */
.uploads{
  margin-top:12px;
  display:grid;
  gap:10px;
}
.upload-item{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:12px;
  border-radius:18px;
  border:1px solid rgba(180,120,255,.16);
  background:rgba(0,0,0,.18);
}
.upload-left strong{ display:block; margin-bottom:3px; }
.upload-left span{ opacity:.78; font-size:13px; }
.upload-right{ opacity:.78; font-size:13px; text-align:right; }
/* =========================
   MY VIDEOS PAGE
   ========================= */

.tn-corner-logo{
  position:fixed;
  left:16px;
  bottom:16px;
  width:58px;
  height:58px;
  border-radius:18px;
  border:1px solid rgba(180,120,255,.30);
  background:rgba(10,10,16,.55);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 28px rgba(160,90,255,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:40;
  text-decoration:none;
}
.tn-corner-logo img{
  width:40px;
  height:40px;
  border-radius:14px;
  object-fit:cover;
  filter: drop-shadow(0 0 18px rgba(200,120,255,.45));
}
.tn-corner-logo:hover{
  box-shadow: 0 0 38px rgba(160,90,255,.30);
  transform: translateY(-2px);
  transition: .2s ease;
}

.tn-toolbar{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 240px auto;
  gap:10px;
  align-items:center;
}
@media (max-width: 860px){
  .tn-toolbar{ grid-template-columns:1fr; }
}

.tn-search{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(180,120,255,.20);
  background:rgba(0,0,0,.22);
}
.tn-search input{
  width:100%;
  background:transparent;
  border:none;
  outline:none;
  color:#fff;
  font-size:15px;
}
.tn-icon{ opacity:.9; }

.tn-filter select{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(180,120,255,.20);
  background:rgba(0,0,0,.22);
  color:#fff;
  outline:none;
}

/* Stats pills */
.tn-stats{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.stat-pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(180,120,255,.18);
  background:rgba(160,90,255,.10);
  font-size:12px;
  opacity:.92;
}

/* Video grid */
.mv-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 1100px){
  .mv-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px){
  .mv-grid{ grid-template-columns: 1fr; }
}

.mv-card{
  border-radius:20px;
  border:1px solid rgba(180,120,255,.18);
  background:rgba(0,0,0,.18);
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mv-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(160,90,255,.16);
}

.mv-thumb{
  position:relative;
  height:170px;
  background:
    radial-gradient(400px 200px at 30% 20%, rgba(180,120,255,.25), transparent 60%),
    radial-gradient(400px 220px at 80% 30%, rgba(80,140,255,.18), transparent 60%),
    rgba(10,10,16,.55);
  border-bottom:1px solid rgba(180,120,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
}
.mv-badge{
  position:absolute;
  top:10px;
  left:10px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  background:rgba(0,0,0,.28);
  border:1px solid rgba(180,120,255,.18);
}
.mv-play{
  width:54px;
  height:54px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.28);
  border:1px solid rgba(180,120,255,.18);
  box-shadow: 0 0 26px rgba(160,90,255,.18);
  font-size:22px;
}

.mv-body{
  padding:12px;
}
.mv-title{
  font-weight:900;
  margin-bottom:4px;
  letter-spacing:.2px;
}
.mv-meta{
  opacity:.78;
  font-size:13px;
  margin-bottom:10px;
}
.mv-tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:10px;
}
.mv-tag{
  padding:6px 8px;
  border-radius:999px;
  font-size:12px;
  border:1px solid rgba(180,120,255,.14);
  background:rgba(160,90,255,.08);
  opacity:.92;
}

.mv-actions{
  display:flex;
  gap:8px;
}
.btn.small{
  padding:10px 12px;
  border-radius:14px;
  font-size:13px;
}
.btn.warn{
  border-color: rgba(255,210,120,.25);
  background:rgba(255,210,120,.08);
}
.btn.red{
  border-color: rgba(255,120,180,.25);
  background:rgba(255,70,170,.10);
}

/* Empty state */
.mv-empty{
  margin-top:14px;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(180,120,255,.16);
  background:rgba(0,0,0,.18);
}
.mv-empty-inner{
  text-align:center;
  padding:20px 10px;
}
.mv-empty-icon{
  font-size:42px;
  margin-bottom:8px;
  filter: drop-shadow(0 0 18px rgba(200,120,255,.35));
}
.mv-empty h2{ margin:6px 0; }
.mv-empty p{ opacity:.82; margin:0 0 12px; }