 .top-bar {
     display: flex;
     gap: 10px;
     justify-content: center;
     flex-wrap: wrap;
     padding: 15px;
     background: #111;
 }
 
 .home-btn {
     background: #e91e63;
     color: #fff;
     text-decoration: none;
     padding: 10px 16px;
     border-radius: 8px;
     font-weight: 600;
 }
 
 .home-btn:hover {
     opacity: .9;
 }
 
 .page-header {
     text-align: center;
     padding: 30px 15px;
 }
 
 .page-header h1 {
     margin-bottom: 10px;
 }
 
 .page-header p {
     color: #777;
     max-width: 700px;
     margin: auto;
 }
 
 body {
     background: #0f172a;
     color: white;
     margin: 0;
     font-family: "Poppins", sans-serif;
 }
 /* PAGE */
 
 .watch-page {
     max-width: 1100px;
     margin: auto;
     padding: 15px;
 }
 /* BACK BUTTON */
 
 .back-btn {
     display: inline-block;
     margin-bottom: 20px;
     background: #FBBF24;
     color: black;
     text-decoration: none;
     padding: 10px 18px;
     border-radius: 12px;
     font-weight: 700;
     transition: 0.3s;
 }
 
 .back-btn:hover {
     transform: translateY(-2px);
 }
 /* MAIN VIDEO */
 
 .main-video {
     background: #111827;
     border-radius: 22px;
     overflow: hidden;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
     margin-bottom: 30px;
 }
 
 .main-video video {
     width: 100%;
     display: block;
     background: black;
     max-height: 75vh;
 }
 /* VIDEO DETAILS */
 
 .video-details {
     padding: 20px;
 }
 
 .video-details h1 {
     margin: 0 0 14px;
     font-size: 24px;
     line-height: 1.5;
 }
 /* VIDEO META */
 
 .video-meta {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
 }
 
 .video-meta span {
     background: #1e293b;
     color: #FBBF24;
     padding: 8px 12px;
     border-radius: 999px;
     font-size: 13px;
     font-weight: 600;
 }
 /* RELATED SECTION */
 
 .related-section {
     margin-top: 25px;
 }
 
 .related-section h2 {
     color: #FBBF24;
     margin-bottom: 18px;
     font-size: 24px;
 }
 /* RELATED GRID */
 
 .related-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 14px;
 }
 /* RELATED CARD */
 
 .related-card {
     background: #111827;
     border-radius: 18px;
     overflow: hidden;
     text-decoration: none;
     color: white;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
 }
 
 .related-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
 }
 /* RELATED VIDEO */
 
 .related-card video {
     width: 100%;
     aspect-ratio: 16/9;
     object-fit: contain;
     background: black;
     display: block;
 }
 /* RELATED INFO */
 
 .related-info {
     padding: 12px;
 }
 
 .related-info h3 {
     margin: 0 0 6px;
     font-size: 14px;
     line-height: 1.4;
 }
 
 .related-info p {
     margin: 0;
     color: #FBBF24;
     font-size: 12px;
     font-weight: 600;
 }
 /* MORE VIDEOS BUTTON */
 
 .more-videos-wrap {
     text-align: center;
     margin-top: 30px;
 }
 
 .more-videos-btn {
     display: inline-block;
     background: #FBBF24;
     color: black;
     text-decoration: none;
     padding: 14px 24px;
     border-radius: 14px;
     font-weight: 700;
     transition: 0.3s;
 }
 
 .more-videos-btn:hover {
     transform: translateY(-3px);
 }
 /* MOBILE */
 
 @media(max-width:768px) {
     .related-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 10px;
     }
     .related-info h3 {
         font-size: 13px;
     }
 }
 /* =================================
SCROLL FIX
================================= */
 
 html {
     width: 100%;
     min-height: 100%;
     overflow-x: hidden;
     overflow-y: auto;
 }
 
 body {
     width: 100%;
     min-height: 100vh;
     overflow-x: hidden;
     overflow-y: auto;
     margin: 0;
 }
 /* Main page containers */
 
 .video-homepage,
 .watch-page {
     width: 100%;
     min-height: 100vh;
     height: auto;
     overflow: visible;
 }
 /* Prevent videos from creating horizontal overflow */
 
 video {
     max-width: 100%;
     height: auto;
     display: block;
 }
 /* Prevent grids from exceeding viewport */
 
 .video-grid,
 .related-grid {
     width: 100%;
 }
 /* Prevent any element from causing side scroll */
 
 * {
     max-width: 100%;
     box-sizing: border-box;
 }
 
 .page-btn {
     text-align: center;
     margin: 25px 0;
 }
 
 .page-btn a {
     display: inline-block;
     background: #FBBF24;
     /* Gold */
     color: #111827;
     /* Dark text */
     padding: 14px 24px;
     border-radius: 14px;
     text-decoration: none;
     font-weight: 800;
     font-size: 16px;
     box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
     transition: all 0.3s ease;
 }
 
 .page-btn a:hover {
     background: #f59e0b;
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(251, 191, 36, 0.6);
 }