
body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}   
hr{
  color: #ffff;
  height: 4px;
  background-color: #fff;
}
p{
  font-size: 16px;
  font-weight: 500;
  color: #000000; 
}
.first p{
	width:80%

}

a{
  text-decoration: none;
  color: #000000;
}


.second {
  text-align: center; /* This is the key for centering all text inside */
  width: 100%;
  margin-top: 3em;
}

.second h1 {
  margin-top: 3em;
  padding-top: 5px;
  padding-bottom: 7px;
  color: #000000;
  /* margin-top moved to the parent container for better spacing */
}

.second p {
  color: #555; /* Optional: makes the subtext slightly softer than the header */
  margin-top: 10px;
  font-size: 15px;
  
}

.first {
    text-align: center; /* This centers the header and the paragraph */
    width: 100%;
    padding: 20px 0;
    
}

.first { padding: 0 16px; }

.first h1 {
  margin-top: 3em;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.first p {
    font-weight: 500;
    max-width: 620px; /* Optional: keeps the text from getting too wide */
    margin: 0 auto;   /* Centers the paragraph block itself */
    padding: 8px 30px;
    color: #555;
    font-size: 15px;
    margin-bottom: 3em;
}

.first hr {
  display: none;
}


.wrapper{
	margin: 24px auto;
	width: 80%;
	justify-content: center;
  align-items: center;
  
}
img.ytthumb{
  max-width: 660px;
	float: left;
	border: 2px solid #ffffff;
	border-radius: 12px;
	margin-right: 50px;
	margin-bottom: 15px;
	margin-top: 20px;
}
.dwrapper{
	margin: 24px auto;
	width: 80%;
	justify-content: center;
	align-items: center;
}
img.ytdthumb{
  max-width: 480px;
	border: 2px solid #fff;
	border-radius: 16px;
	margin: 5px;
}
table {
  line-height: 20px;
  padding: 5px;
  font-size: 19px;
  vertical-align: middle;
  text-align: center;
}

.centered-content {
  text-align: center;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
}

.border-box {
  width: 800px;
  padding: 15px;
  border: 0px solid #D0D0D0;
  
  
  margin: 15px auto;
  background-color: #ffffff;
  border-radius: 16px;
  background: #ffffff;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.05),
    0 8px 24px rgba(0, 0, 0, 0.06);
}


.button-heading{
  display: inline-block;
  padding: 10px 20px;
  background-color: #314368;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
}
.copy-button {
  background-color: #ecf0f1;
  border: none;
  cursor: pointer;
}
.sharebutton {
  font-size: 1vw;
}
.data-div{
  font-size: 1vw;
}
#infoPopup {
  display: none;
  position: fixed;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  background-color: #ff4949; /* Nice blue color */
  color: #fff; /* White text */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 999 !important;
}
.channel-avatar {
	float: left;
	margin-right: 15px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: solid silver;
	display: inline-block;
	vertical-align:middle;
}
#playButton {
  width: 100%;
  height: auto;
  margin: 0;
  margin-right: 0;
  
  border-radius: 12px; /* optional: for rounded corners */
}


.card {
	width: 43%;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
#videoContainer {
  position: relative;
  width: 75%;
  padding-top: 42.25%; /* 16:9 Aspect Ratio */
  
}

#videoPlayer {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
}
#closeButton {
  position: absolute;
  top: 5%;
  right: 5%;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
.image-container {
  cursor: pointer;
  position: relative;
  width: 520px;
  flex-shrink: 0;
  margin: 0 auto;        /* 👈 centers horizontally */
  border-radius: 12px;
  overflow: hidden;
}

/* image hover */
.image-container {
  position: relative;
  overflow: hidden;
}

.image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  opacity: 0;
  transition: .25s;
}

.image-container:hover::after {
  opacity: 1;
}

.play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 60px;
  color: #fff;
  opacity: 0;
  transition: .25s;
}

.image-container:hover .play-icon {
  opacity: 1;
}

@media (max-width: 768px) {
  .image-container::after,
  .play-icon {
    opacity: 0 !important;
  }
}



.overlay-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10%; /* Adjust the size of the logo as needed */
    height: auto;
}
.embedcontainer {
  align-self: center;
  justify-content: center;
  background-color: rgb(255, 255, 255);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  margin-top: 30px;
  margin-bottom: 30px;
}
h3 {
  text-align: center;
  margin-bottom: 20px;
}

#embedForm {
  display: flex;
  flex-direction: column;
}

label {
  display: block;
  margin-bottom: 10px;
  margin-right: auto;
  width: 100%;
}





textarea {
float: left;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.collapse2 {
  display: none;
}
.collapse2.show {
  display: inline;
}

.textarea-container {
  position: relative;
  display: inline-block;
width: 100%;
}

.embed-copy-button {
position: absolute;
top: 5px;
right: 5px;
padding: 5px 10px;
background: #dddddd;
color: #333333;
outline: none;
border: 1px solid #cccccc;
cursor: pointer;
}

.embed-copy-button:hover {
  background-color: #cccccc;
}
.faq-list {
  margin-left: 2%;
}
.tools-menu-mobile {
  display: none;
}
@media screen and (max-width: 620px) {
  .ytthumb {
    width: 100%;
  }
  .inputdiv{
    width: 90%;
  }



  .first {
    margin-top: 0px;
  }
  .first h2, hr {
    margin-top: 0px;
    margin-bottom: 0px;
  }

	.ytdthumb {
		width: 90%;
	}
	.data-div{
		font-size: 3vw;
	}
	.border-box {
		max-width: 90%;
		margin: auto;
		padding: 1%;
	}


	.sharebutton {
		font-size: 0.5vw;
	}
	.channel-avatar {
		float: none;
		margin-bottom: 10px;
		margin-left: 33%;
		width: 100px;
		height: 100px;
		border-radius: 50%;
		border: solid silver;
		display: inline-block;
		vertical-align: middle;
	}
	.channel-text {
		margin-bottom: 8px;
		text-align: center;
		font-weight: 600;
	}
	.channel-details {
		text-align: center;
	}
	.break {
		display: none;
	}
	#playButton {
		width: 90%;
		margin: 12px;
		
	}
	.card {
		width: 100%;
    
	}

  
	#videoContainer {
		position: relative;
		width: 100%;
		padding-top: 56.27%;
	}

	#videoPlayer {
		position: absolute;
		top: 5%;
		left: 5%;
		width: 90%;
		height: 90%;
	}
	.image-container {
		display: inline-block;
		vertical-align:middle;
		position: relative;
		width: 100%;
		max-width: 100%; /* Adjust as needed */
		margin: 0 auto; /* Center the container horizontally */
	}
	#closeButton {
		position: absolute;
		top: 0%;
		right: 1%;
		background: none;
		border: none;
		font-size: 2rem;
		color: white;
		cursor: pointer;
	}
	.first h4 {
		font-size: 5vw;
	}
  .embedcontainer {
		width: 90%;
	}
  .faq-list {
    margin-left: 12%;
  }
  #infoPopup {
    width: 35%;
    display: none;
    position: relative;
    float: inline-start;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999 !important;
  }
  .dropdown-menu {
    left: 50%;
    transform: translateX(-40%);
  }
}
@media (min-width: 619px) {
  .abfooter {
    position: absolute;
    bottom: 0;
  }
}



/* Monetization checker css */

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  margin: 0;
  padding: 0;
}



/* --- Main Wrapper & Form --- */
.checker-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 24px;
}

.checker-wrapper form {
  display: flex;
  width: 100%;
  max-width: 800px; 
  gap: 12px;
  align-items: center;
}

/* --- Input Field --- */
.checker-input {
  flex-grow: 1;
  height: 64px;
  padding: 0 24px;
  font-size: 18px;
  border-radius: 18px;
  border: 1.5px solid #d0d0d0;
  outline: none;
  color: #000;
  min-width: 0;
  
}

.checker-input::placeholder {
  color: #b5b5b5;
  font-weight: 500;
}

.checker-input:focus {
  border-color: #000;
}

/* --- Button --- */
.checker-btn {
  height: 64px;
  padding: 0 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 14px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  flex-shrink: 0;
}

.checker-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.checker-btn:active {
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 600px) {
  .checker-title {
    font-size: 32px;
    margin-top: 40px;
  }
  
  .checker-wrapper form {
    flex-direction: column;
    align-items: stretch;
  }

  .checker-input,
  .checker-btn {
    width: 100%;
  }
}


  
/* Dislike viewer css */

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

/* 1. Ensure the wrapper allows the form to center and expand */
.get-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 80px;
  width: 100%;
  padding: 0 24px;
}

/* 2. Style the form as a flex container */
.get-wrapper form {
  display: flex;
  width: 100%;
  max-width: 800px; /* Increased from 520px for a better 'wide' look */
  gap: 12px;        /* Adds space between input and button */
  align-items: center;
  margin-bottom: 2em;
}

/* 3. Make the input take up all remaining space */
.get-input {
  flex-grow: 1;      /* This is the key fix: it forces the input to fill width */
  height: 64px;
  padding: 0 24px;
  font-size: 18px;
  border-radius: 18px;
  border: 1.5px solid #d0d0d0;
  outline: none;
  color: #000;
  min-width: 0;      /* Prevents flex items from overflowing */
}

.get-input::placeholder {
  color: #b5b5b5;
  font-weight: 500;
}

.get-input:focus {
  border-color: #000;
}

.get-btn {
  height: 64px;
  padding: 0 32px;
  font-size: 18px;
  font-weight: 650;
  border-radius: 14px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  flex-shrink: 0;   /* Prevents the button from squishing */
}

.get-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Responsive: Stack vertically on small screens */
@media (max-width: 600px) {
  .get-wrapper form {
    flex-direction: column;
    align-items: stretch; /* Makes button and input same width on mobile */
  }

  .get-input,
  .get-btn {
    width: 100%;
  }
}




/* Change these in your CSS */

.card-body .card-title {
  font-size: 20px;
  text-align: left;
  margin-left: 0;        /* Reset this to 0 */
  margin-top: 15px;      /* Add some space from the image */
  padding: 0 10px;       /* Use padding for consistent alignment */
}

.card-body .card-text {
  text-align: left;
  font-size: 14px;
  color: #6b7280;
  margin-left: 0;        /* Reset this to 0 */
  padding: 0 10px;       /* Match the padding of the title */
}

.card-body {
  padding: 20px !important;
  text-align: left; /* Force alignment of child text elements */
}


 /* FORCE modern card style */
.card {
  max-width: 800px;
  margin: 24px auto !important;
  border: none !important;
  border-radius: 20px !important;
  background: #ffffff !important;
 
  overflow: hidden;
  
}

.card {
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.06),
    0 10px 30px rgba(0, 0, 0, 0.04) !important;
}


.card-header {
  background: linear-gradient(90deg, #22c55e, #16a34a) !important;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 16px;
  padding: 14px !important;
  border-bottom: none !important;
  font-size: 22px; 
}

.card-body {
  padding: 20px !important;
}


.card-header.danger {
  background: linear-gradient(90deg, #ef4444, #dc2626) !important;
  
}


.card-header.danger {
    background: linear-gradient(90deg, #ef4444, #dc2626);
    color: #ffffff !important;
}

.card-header.success i,
.card-header.danger i,
.card-header.success svg,
.card-header.danger svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}

.card-header.success *,
.card-header.danger * {
    color: #ffffff !important;
}



/* Dislike Viewer Share Section */

.share-container {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.share-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center; /* Center icons if they wrap */
  flex-wrap: wrap;         /* This allows items to go to the next line */
  gap: 10px;
  padding: 10px 14px;
  background: #f9fafb;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  max-width: 95%;          /* Prevents the bar from touching screen edges */
}
/* Label */
.share-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
  padding-right: 8px;
  border-right: 1px solid #e5e7eb;
}

/* Icons */
.share-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.share-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

/* Hover colors */
.facebook:hover { background:#1877f2; color:#fff; }
.whatsapp:hover { background:#25d366; color:#fff; }
.twitter:hover { background:#000; color:#fff; }
.telegram:hover { background:#229ed9; color:#fff; }
.reddit:hover { background:#ff4500; color:#fff; }
.copy:hover { background:#111; color:#fff; }

#infoPopup {
  position: fixed !important;     /* escape parent container */
  z-index: 999999 !important;     /* bring to top */
  background: #111;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  display: none;
  pointer-events: none;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .share-bar {
    padding: 12px;
    gap: 8px; /* Slightly tighter gap for mobile */
  }

  .share-label {
    border-right: none; /* Remove the vertical line */
    width: 100%;        /* Make "SHARE" take full width */
    justify-content: center; /* Center the word "SHARE" */
    margin-bottom: 5px;
    padding-right: 0;
  }

  .share-icon {
    width: 36px;  /* Slightly smaller icons for better fit */
    height: 36px;
  }
}

/* Dislike viewer footer */

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

body {
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: #ffffff;
}



/* Footer */
.footer {
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}

.footer-container {
  max-width: 1280px;
  margin: auto;
  padding: 4rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer-brand h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
}

.social-icons svg {
  width: 24px;
  height: 24px;
  fill: #94a3b8;
  transition: fill 0.2s;
}

.social-icons a:hover svg {
  fill: #0f172a;
}

/* Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2.5rem;
  
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  width: 100%;
  text-align: left;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
  width: 100%;
}

.footer-column li {
  margin-bottom: 1rem;
}

.footer-column a {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
}

.footer-column a:hover {
  color: #0f172a;
}


/* Bottom */
.footer-bottom {
  border-top: 1px solid #f1f5f9;
  margin-top: 4rem;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #94a3b8;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 5fr 7fr;
  }
}



/* Mian Content Container */

/* Content Container */
.content-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Paragraph Design Blocks */
.para-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.subheading {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    letter-spacing: -0.01em;
}

.body-text {
    font-size: 15px;
    color: #8e8e93; /* Subtle gray as seen in the image */
    font-weight: 400;
    line-height: 1.4;
}

/* Main content */
.main-content {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  padding: 2rem;
}

.main-text h1 {
  font-size: 2.25rem;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.main-text p {
  color: #94a3b8;
}











/* === Thumbnail Downloader === */

.thumb-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 24px;
}

.thumb-form {
  display: flex;
  width: 100%;
  max-width: 800px;
  gap: 12px;
  align-items: center;
}

.thumb-input {
  flex-grow: 1;
  height: 64px;
  padding: 0 24px;
  font-size: 18px;
  border-radius: 18px;
  border: 1.5px solid #d0d0d0;
  outline: none;
  color: #000;
  min-width: 0;
}

.thumb-input::placeholder {
  color: #b5b5b5;
  font-weight: 500;
}

.thumb-input:focus {
  border-color: #000;
}

.thumb-btn {
  height: 64px;
  padding: 0 32px;
  font-size: 22px;
  font-weight: 600;
  border-radius: 14px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  flex-shrink: 0;
}

.thumb-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

thumb-btn:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .thumb-form {
    flex-direction: column;
    align-items: stretch;
  }

  .thumb-input,
  .thumb-btn {
    width: 100%;
  }
}










/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* --- Navigation --- */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f1f5f9;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo a {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-size: 15px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item:hover {
    color: #0f172a;
}

.contact-btn {
    padding: 10px 24px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-btn:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

/* --- Dropdown Desktop --- */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 200px;
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #f8fafc;
    color: #0f172a;
}

.dropdown-menu hr {
    border: 0;
    border-top: 1px solid #f1f5f9;
    margin: 8px 0;
}

.chevron-icon {
    opacity: 0.6;
}
/* Force hide hamburger on desktop */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

/* --- Mobile Menu Styles (FIXED) --- */

/* Hide mobile elements by default */
.mobile-only {
    display: none;
}

/* Hamburger button */
.mobile-menu-toggle {
    background: none;
    border: none;
    color: #0f172a;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
}

/* Off-canvas mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);

    /* IMPORTANT: fully hidden by default */
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;

    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.3s ease;

    display: flex;
    flex-direction: column;
}

/* Menu visible state */
.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

/* Header */
.mobile-menu-header {
    height: 72px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
}

/* Close button */
.close-menu {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
}

/* Links */
.mobile-links {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.mobile-links a,
.mobile-dropdown-toggle {
    padding: 12px 14px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000000;
    border: none;
    width: 100%;
    text-align: left;
}

/* Dropdown */
.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 16px;
    background-color: #000000;
}

.mobile-dropdown-content.active {
    max-height: 240px;
}

.mobile-dropdown-content a {
    font-size: 14px;
    color: #ffffff;
}

/* CTA button */
.contact-btn-mobile {
    margin-top: 1px;
    padding: 14px;
    background-color: #0f172a;
    color: #fff !important;
    border-radius: 0px;
    text-align: center;
    justify-content: center !important;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(2px);
    z-index: 999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Prevent horizontal scroll */
html,
body {
    overflow-x: hidden;
}

/* Disable background scroll when menu open */
body.menu-open {
    overflow: hidden;
}

/* Mobile only */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: flex;
        align-items: center;
    }
}






/* Thumbnail Result CSS */

/* Main Card */
.yt-result-card {
  max-width: 800px;
  margin: 30px auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  overflow: hidden;
}

/* Thumbnail */
.yt-thumb-box {
  width: 100%;
  background: #000;
}

.yt-thumb {
  width: 100%;
  display: block;
  border-radius: 18px 18px 0 0;
}

/* Content */
.yt-info {
  padding: 18px 22px;
}

.yt-title {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
}

/* Download rows */
.download-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f7f7;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.quality {
  font-weight: 600;
  color: #333;
}

.download-btn {
  background: linear-gradient(135deg, #ff4b2b, #ff416c);
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.download-btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

/* Mobile safe container */
@media (max-width: 768px) {
  .yt-result-card {
    margin: 16px !important;
    border-radius: 18px;
  }

  .yt-thumb {
    border-radius: 16px;
  }
}



