html,
body {
    height: 100%;
    padding: 0;
    margin: 0;
}

* {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    box-sizing: border-box;
}

h3 {
    color: #e5e5e5;
}

a h3:hover {
    color: #fff;
}

a {
    text-decoration: none;
    color: #0654ba;
}

.wrapper {
    min-width: 1050px;
    min-height: 100%;
    background-color: #141414;
}

.signInContainer {
    background-color: #efefee;
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column {
    background-color: #fff;
    min-height: 100px;
    max-height: 100%;
    width: 750px;
    box-shadow: rgba(0,0,0, 0.1) 0 1px 2px;
    padding: 20px 35px;
    overflow-y: auto;
}

.column form {
    display: flex;
    flex-direction: column;
    padding-top: 24px;
}

.column form input[type="text"],
.column form input[type="email"],
.column form input[type="password"] {
    font-size: 14px;
    margin: 10px 0;
    border: none;
    border-bottom: 1px solid #dedede;
}

.column form input[type="submit"] {
    background-color: #4285f4;
    color: #fff;
    height: 36px;
    width: 88px;
    border: none;
    border-radius: 3px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 16px;
}


.column form input[type="submit"]:hover {
    background-color: #2f68c5;
    color: #fff;
    height: 36px;
    width: 88px;
    border: none;
    border-radius: 3px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 16px;
}


.column .header {
    padding: 20px 0;
}

.column h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    margin: 0;
    padding-top: 16px;
    color: #000;
}

.column .header span {
    font-size: 14px;
}

.column .header img {
    min-width: 200px;
    background-color: black;
    border: 7px solid black;
    border-radius: 11px;
}

.signInMessage {
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.errorMessage {
    color: #f00;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.previewImage,
.previewVideo {
    width: 100%;
}

.previewContainer {
    position: relative;
    display: flex;
}

.previewContainer.small {
    width: 230px;
    height: 129px;
    margin-right: 4px;
    display: inline-flex;
}

.previewContainer.small img {
    width: 100%;
    height: 180%;
    border: none;
    border-radius: 12.5px;
    object-fit: cover;
}


.previewContainer.small img:hover {
    width: 99%;
    height: 177%;
    border: 4px solid #fff;
    border-radius: 12.5px;
    object-fit: cover;
}





.previewOverlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    position: absolute;
}

.previewOverlay .mainDetails h3 {
    color: #fff;
    font-size: 40px;
    margin: 15px 0;
}

.previewOverlay .mainDetails h4 {
    color: #fff;
    font-size: 20px;
    margin-top: 0;
}

.previewOverlay .mainDetails {
    position: relative;
    top: 35%;
    margin-left: 50px;
    display: flex;
    flex-direction: column;
}

.mainDetails button {
    background-color: rgba(51,51,51,0.4);
    color: #fff;
    border: none;
    min-width: 150px;
    padding: 0 38px;
    height: 50px;
    max-height: 50px;
    font-size: 18px;
    border-radius: 2px;
    margin-bottom: 15px;
    margin-right: 5px;
    cursor: pointer;
}

button i {
    color: inherit;
}

.mainDetails button:hover {
    background-color: #e6e6e6;
    color: #000;
}

.category {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.entities,
.videos {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

.previewCategories {
    padding: 0 50px;
}

.errorBanner {
    color: #fff;
    position: absolute;
    top: 25%;
    width: 100%;
    text-align: center;
    font-size: 18px;
}

.season {
    display: flex;
    flex-direction: column;
    padding: 10px 50px;
}

.episodeContainer {
    display: inline-flex;
    justify-content: center;
    margin-right: 4px;
}

.episodeContainer .contents {
    display: flex;
    flex-direction: column;
    width: 230px;
    position: relative;
}

.episodeContainer img {
    width: 230px;
    height: 230px;
    object-fit: cover;
}

.episodeContainer .videoInfo h4,
.episodeContainer .videoInfo span {
    color: #fff;
    width: 100%;
    white-space: normal;
    font-size: 22px;
}

.episodeContainer .videoInfo {
    max-height: 200px;
    overflow-y: auto;
}

.previewCategories.noScroll .category .entities {
    white-space: normal;
}

.watchContainer video {
    width: 100%;
}

.videoControls {
    position: absolute;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    background-color: rgba(0,0,0,0.3);
}

.videoControls h1 {
    color: #fff;
}

.videoControls button {
    font-size: 50px;
    padding: 50px;
    color: #fff;
    background-color: transparent;
    border: none;
}

.upNext {
    height: 100%;
    justify-content: center;
}

.upNextContainer button {
    padding: 0;
}

.upNextContainer h2,
.upNextContainer h3 {
    color: #fff;
}

.watchNav {
    z-index: 2;
}

.seen {
    color: #2ecc71;
    font-size: 26px;
    position: absolute;
    top: 5px;
    left: 5px;
}

.topBar {
    position: fixed;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0 60px;
    height: 70px;
    box-sizing: border-box;
    min-width: 1050px;
    transition: background-color 200ms linear;
}

.topBar.scrolled {
    background-color: #141414;
    transition: background-color 200ms linear;
}

.column .header img {
    width: 200px;
}




.logoContainer {
    height: 40px;
}

.logoContainer img {
    height: 100%;
}

.navLinks {
    display: flex;
    list-style: none;
}

.navLinks a {
    color: #fff;
    font-size: 27px;
    margin-left: 20px;
}

.rightItems {
    text-align: right;
    flex: 1;
}

.rightItems i {
    color: #fff;
    font-size: 20px;
    margin-left: 10px;
}

.previewCategories h1 {
    color: #e5e5e5;
}

.textboxContainer {
    padding: 100px 50px;
}

.searchInput {
    height: 50px;
    width: 600px;
    border: 1px solid #dedede;
    background-color: transparent;
    color: #fff;
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 3px;
}

.settingsContainer {
    padding-top: 60px;
    background-color: transparent;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.settingsContainer h2 {
    color: #fff;
    margin-top: 0;
}

.settingsContainer .formSection {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    border-bottom: 1px solid #dedede;
    padding-bottom: 20px;
}

.settingsContainer form input[type="text"],
.settingsContainer form input[type="email"],
.settingsContainer form input[type="password"] {
    width: 300px;
    height: 40px;
    font-size: 15px;
    margin: 5px 0;
    border: none;
    border-radius: 3px;
    padding: 0 5px;
}

.settingsContainer form input[type="submit"] {
    background-color: #dc1928;
    width: 100px;
    height: 40px;
}

.alertSuccess,
.alertError {
    margin: 10px 0;
}

.alertError {
    color: #dc1928;
}

.alertSuccess {
    color: #2ecc71;
}

.formSection h3 {
    padding: 0;
    color: #fff;
    font-size: 20px;
}




/*Responsive adjustments for small screens */
@media (min-width: 680px) {
    
    
    h3 {
    color: yellow;
    font-size: 33px;
}
    
    
    
    
  .profile-reels-list {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.1rem;
  }

  .profile-reel-card {
    max-width: 290px;
    width: 290px;
    max-height: 290px;
    height: 290px;
    flex: 1 1 290px;
    margin-bottom: 0;
  }

  .profile-reel-thumb {
    max-width: 290px;
    width: 290px;
    max-height: 290px;
    height: 290px;
    border-radius: 14px;
  }
  
  
    .profile-reel-card {
      background: #232338;
      border-radius: 8px;
      width: 290px;
      overflow: hidden;
      margin-bottom: 1.2em;
    }
    
    .profile-reel-card img.profile-reel-thumb {
      width: 290px;
      height: 290px;
      object-fit: cover;
    }
  
  .signInContainer {
    background-color: #efefee;
    height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column {
    background-color: #efefee;
    height: auto;
    
    align-items: center;
    justify-content: center;
    min-height:40px;
    
    width: 750px;
    box-shadow: rgba(0,0,0, 0.1) 0 1px 2px;
    padding: 11px 11px;
    overflow-y: auto;
}

.column form {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
}

.column form input[type="text"],
.column form input[type="email"],
.column form input[type="password"] {
    font-size: 34px;
    margin: 10px 0;
    padding: 22px 22px;
    border: none;
    border-bottom: 1px solid #dedede;
}

.column form input[type="submit"] {
    background-color: #4285f4;
    color: #fff;
    height: 77px;
    width: 275px;
    
    border: none;
    border-radius: 3px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 40px;
    font-size: 33px;
    padding: 22px 22px 22px 22px;
}




.column form input[type="submit"]:hover{
    background-color: #2f68c5;
    color: #fff;
    height: 77px;
    width: 275px;
    cursor: hand;
    border: none;
    border-radius: 3px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 40px;
    font-size: 33px;
    padding: 22px 22px 22px 22px;
}







.logoContainer {
    height: 65px;
    margin-top: 42px;
    
}

.logoContainer img {
    width: 270px;
    height: 140%;
    background-color: black;
    border: 7px solid black;
    border-radius: 11px;
}

.navLinks {
    display: flex;
    list-style: none;
}

.navLinks a {
    color: #fff;
    font-size: 27px;
    margin-left: 20px;
}  
  
 .navLinks a:hover {
    color: red;
    font-size: 27px;
    font-weight: 450;
    margin-left: 20px;
}  
 
  
  
.logo img {
    width: 330px;
    
  }


.column .header {
    padding: 20px 0;
}

.column h3 {
    font-size: 34px;
    font-weight: 400;
    line-height: 32px;
    margin: 0;
    padding-top: 16px;
    color: #000;
}

.column .header span {
    font-size: 14px;
}

.column .header img {
    width: 100px;
}

.signInMessage {
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
}
  
  
  

  
  
  
}




/* On mobile (screen width <= 480px), shrink the logo */
@media (max-width: 480px) {
  .brand-logo img {
    width: 120px;
  }
}


@media (max-width: 600px) {
  .reel-thumbnail {
    height: 140px;
  }

  .feed-container h2 {
    font-size: 1.8em;
  }
}


@media (max-width: 480px) {
  .brand-logo h1 { font-size: 1.3em; }
  .auth-btn { font-size: 0.95em; padding: 0.8em 1.3em; }
}






