/* =========================================================
   3DMDL — GLOBAL
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #08090b;
  color: #f5f7fa;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
  height: 76px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(8, 9, 11, 0.94);
  border-bottom: 1px solid #20242a;

  position: sticky;
  top: 0;
  z-index: 100;

  backdrop-filter: blur(14px);
}

.logo {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.logo {
  color: #ffffff;
}

.logo span {
  color: #2f80ed;
}


.nav nav {
  display: flex;
  align-items: center;
  gap: 30px;

  color: #9ca3ad;
  font-size: 14px;
}

.nav nav a:hover {
  color: #fff;
}

.nav-btn {
  padding: 10px 16px;

  border: 1px solid #30353d;
  border-radius: 8px;

  color: #e5e7eb;

  transition: 0.2s ease;
}

.nav-btn:hover {
  border-color: #59616d;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 20px;

  border: 0;
  border-radius: 8px;

  background: #f1f3f5;
  color: #101114;

  font-weight: 800;

  transition: 0.2s ease;
}

.primary:hover {
  background: #fff;
  transform: translateY(-1px);
}


/* =========================================================
   CHARACTER PAGE
   ========================================================= */

#characterPage {
  width: 100%;
}


/* =========================================================
   CHARACTER LAYOUT
   ========================================================= */

.character-layout {
  max-width: 1380px;
  margin: 0 auto;

  padding: 64px 5vw 70px;

  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(460px, 1.05fr);

  gap: 70px;

  align-items: start;
}


/* =========================================================
   LEFT SIDE
   ========================================================= */

.character-visual {
  min-width: 0;
}

.character-main-image {
  width: 100%;
  height: 650px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at center,
      #171a20 0%,
      #0e1014 50%,
      #0a0b0e 100%
    );

  border: 1px solid #242932;
  border-radius: 18px;

  overflow: hidden;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.35);
}

.character-main-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  display: block;
}

.empty-image {
  color: #626974;
  font-size: 14px;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 16px;
}

.thumb {
  width: 88px;
  height: 88px;

  padding: 0;

  background: #101216;

  border: 1px solid #292e36;
  border-radius: 10px;

  overflow: hidden;

  transition: 0.2s ease;
}

.thumb img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  display: block;
}

.thumb:hover {
  border-color: #626a75;
  transform: translateY(-2px);
}

.thumb.selected {
  border-color: #f2f4f7;
  box-shadow: 0 0 0 1px #f2f4f7;
}


/* =========================================================
   RIGHT SIDE
   ========================================================= */

.character-details {
  min-width: 0;
  padding-top: 8px;
}

.character-eyebrow,
.section-label {
  color: #4da3ff;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.character-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow-icon {
  width: 24px;
  height: 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #2f80ed;

  background: rgba(47, 128, 237, 0.10);
  border: 1px solid rgba(47, 128, 237, 0.35);
  border-radius: 7px;
}

.eyebrow-icon svg {
  width: 14px;
  height: 14px;

  fill: none;
  stroke: #2f80ed;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.character-details h1 {
  margin: 12px 0 20px;

  max-width: 760px;

font-size: clamp(30px, 2.7vw, 42px);

  line-height: 1.08;

  letter-spacing: -0.045em;

  font-weight: 850;
}

.character-description {
  max-width: 700px;

  margin: 0 0 30px;

  color: #9aa1aa;

  font-size: 15px;

  line-height: 1.8;
}


/* =========================================================
   INFORMATION CARDS
   ========================================================= */

.info-grid {
  display: grid;

  grid-template-columns:
    repeat(6, minmax(0, 1fr));

  gap: 12px;

  margin-top: 24px;
}

.info-card {
  min-height: 92px;

  padding: 17px;

  display: flex;
  align-items: center;

  gap: 13px;

  background: #101216;

  border: 1px solid #272c34;

  border-radius: 11px;

  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.info-card:nth-child(1),
.info-card:nth-child(2),
.info-card:nth-child(3) {
  grid-column: span 2;
}

.info-card:nth-child(4) {
  grid-column: span 3;
}

.info-card:nth-child(5) {
  grid-column: span 3;
}

.info-card:hover {
  border-color: #414954;
  transform: translateY(-2px);
}


/* =========================================================
   INFO ICON
   ========================================================= */

.info-icon {
  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #181c22;

  border: 1px solid #303641;

  border-radius: 10px;
}

.info-icon svg {
  width: 20px;
  height: 20px;

  fill: none;

  stroke: #aeb5bf;

  stroke-width: 1.5;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card span {
  display: block;

  margin-bottom: 5px;

  color: #69717c;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}

.info-card strong {
  display: block;

  color: #eef1f4;

  font-size: 13px;

  line-height: 1.35;

  font-weight: 650;
}


/* =========================================================
   PREMIUM ACCESS CARD
   ========================================================= */

.access-card {
  margin-top: 18px;

  padding: 20px;

  display: flex;
  align-items: center;

  gap: 15px;

  background:
    linear-gradient(
      135deg,
      #101d31,
      #0e1725
    );

  border: 1px solid #28456d;

  border-radius: 13px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.025);
}

.access-icon {
  width: 44px;
  height: 44px;

  flex: 0 0 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #162a46;

  border: 1px solid #31527c;

  border-radius: 10px;
}

.access-icon svg {
  width: 20px;
  height: 20px;

  fill: none;

  stroke: #78a9e7;

  stroke-width: 1.7;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.access-content {
  flex: 1;
  min-width: 0;
}

.access-content h3 {
  margin: 0 0 5px;

  color: #f0f5fc;

  font-size: 15px;

  font-weight: 750;
}

.access-content p {
  margin: 0;

  color: #8190a3;

  font-size: 12px;

  line-height: 1.55;
}

.access-button {
  min-width: 170px;

  padding: 12px 18px;

  border: 1px solid #477fc3;

  border-radius: 8px;

  background: #2e73b9;

  color: #fff;

  font-size: 13px;

  font-weight: 800;

  transition: 0.2s ease;
}

.access-button:hover:not(:disabled) {
  background: #3984d0;
  border-color: #5996d9;
}

.access-button:disabled {
  opacity: 0.55;
  cursor: default;
}

.access-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-left: auto;
  margin-top: 6px;

  color: #2f80ed !important;
  font-size: 12px;
  font-weight: 650;

  transition: color 0.2s ease;
}

.access-learn-more:hover {
  color: #4da3ff !important;
}

.access-learn-more::after {
  content: "→";
  font-size: 15px;
  line-height: 1;
}


/* =========================================================
   CONTENT SECTIONS
   ========================================================= */

.content-section {
  max-width: 1380px;

  margin: 0 auto;

  padding: 65px 5vw;

  border-top: 1px solid #20242a;
}

.lower-content-grid {
  max-width: 1380px;

  margin: 0 auto;

  padding: 55px 5vw 90px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

  gap: 28px;

  border-top: 1px solid #20242a;
}

.video-column,
.comments-column {
  min-width: 0;
}

.video-column .section-label,
.comments-column .section-label {
  margin-bottom: 8px;
}

.video-column h2,
.comments-column h2 {
  margin: 8px 0 22px;

  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.content-section h2 {
  margin: 10px 0 28px;

  font-size: 31px;

  letter-spacing: -0.04em;
}


/* =========================================================
   VIDEO
   ========================================================= */

.video-wrap {
  width: 100%;

  aspect-ratio: 16 / 9;

  max-width: 620px;

  background: #0e1014;

  border: 1px solid #292e36;

  border-radius: 14px;

  overflow: hidden;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;

  border: 0;
}

.video-placeholder {
  width: 100%;

  aspect-ratio: 16 / 9;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #101216;

  border: 1px dashed #303640;

  border-radius: 14px;

  color: #626a75;
}


/* =========================================================
   COMMENTS
   ========================================================= */

.comments-section {
  max-width: none;

  margin: 0;

  padding: 0;

  border-top: 0;
}

.comments-section h2 {
  margin: 10px 0 28px;

  font-size: 31px;

  letter-spacing: -0.04em;
}

#commentForm {
  max-width: 760px;

  padding: 24px;

  background: #101216;

  border: 1px solid #292e36;

  border-radius: 13px;
}

#commentForm input,
#commentForm textarea {
  width: 100%;

  display: block;

  background: #0a0c0f;

  border: 1px solid #2a3038;

  border-radius: 8px;

  color: #edf0f3;

  outline: none;

  padding: 13px 14px;

  margin-bottom: 12px;
}

#commentForm input {
  height: 47px;
}

#commentForm textarea {
  min-height: 125px;

  resize: vertical;
}

#commentForm input::placeholder,
#commentForm textarea::placeholder {
  color: #5f6670;
}

#commentForm input:focus,
#commentForm textarea:focus {
  border-color: #53606f;
}

.comment-login-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 20px;
}

.comment-login-box a {
  color: #2f80ed !important;

  font-size: 13px;
  font-weight: 650;

  text-decoration: none;

  transition: color 0.2s ease;
}

.comment-login-box a:hover {
  color: #4da3ff !important;
}

#commentForm .primary {
  background: transparent;

  color: #2f80ed;

  border: 1px solid #2f80ed;

  border-radius: 8px;
}

#commentForm .primary:hover {
  background: rgba(47, 128, 237, 0.10);

  color: #4da3ff;

  border-color: #4da3ff;

  transform: none;
}

#commentsList {
  max-width: 760px;

  margin-top: 25px;
}

.comment-item {
  padding: 20px 0;

  border-top: 1px solid #292e36;
}

.comment-item strong {
  display: block;

  margin-bottom: 7px;

  color: #f1f3f5;

  font-size: 13px;
}

.comment-item p {
  margin: 0;

  color: #9aa1aa;

  font-size: 13px;

  line-height: 1.7;
}

.no-comments {
  color: #626a75;

  font-size: 13px;
}


/* =========================================================
   EMPTY
   ========================================================= */

.empty {
  min-height: 500px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 20px;
}

.empty h1 {
  margin: 0;

  font-size: 40px;

  letter-spacing: -0.04em;
}


/* =========================================================
   HOME / LIBRARY
   ========================================================= */

.hero {
  min-height: 620px;

  padding: 70px 7vw;

  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 40px;

  border-bottom: 1px solid #20242a;
}

.eyebrow {
  color: #78818d;

  font-size: 11px;

  letter-spacing: 0.16em;
}

.hero h1 {
  margin: 15px 0;

  font-size: clamp(48px, 6vw, 82px);

  line-height: 0.96;

  letter-spacing: -0.06em;
}

.hero h1 span {
  color: #7b838e;
}

.hero p {
  max-width: 600px;

  color: #9aa1aa;

  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;

  margin-top: 25px;
}

.secondary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 13px 18px;

  border: 1px solid #30353d;

  border-radius: 8px;

  color: #e5e7eb;
}

.secondary:hover {
  border-color: #59616d;
}

.hero-art {
  display: grid;
  place-items: center;
}

.hero-card {
  width: min(430px, 80vw);

  background: #101216;

  border: 1px solid #292e36;

  border-radius: 15px;

  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 420px;

  display: block;

  object-fit: contain;
}

.hero-card-info {
  padding: 16px;
}

.hero-card-info span {
  display: block;

  color: #69717c;

  font-size: 9px;

  letter-spacing: 0.14em;
}

.hero-card-info strong {
  display: block;

  margin-top: 6px;
}

.hero-card-info small {
  display: block;

  margin-top: 5px;

  color: #69717c;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  padding: 70px 7vw;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 20px;

  margin-bottom: 28px;
}

.section h2,
.about h2 {
  margin: 0;

  font-size: 40px;

  letter-spacing: -0.04em;
}

.categories {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}

.category {
  padding: 10px 16px;

  background: #101216;

  border: 1px solid #292e36;

  border-radius: 999px;

  color: #8e96a1;
}

.category.active {
  background: #f1f3f5;
  color: #101114;

  border-color: #f1f3f5;
}

.search input {
  padding: 12px 14px;

  background: #101216;

  border: 1px solid #292e36;

  border-radius: 8px;

  color: #fff;

  outline: none;
}


/* =========================================================
   LIBRARY GRID
   ========================================================= */

.grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 16px;
}

.model-card {
  overflow: hidden;

  background: #101216;

  border: 1px solid #292e36;

  border-radius: 12px;

  transition: 0.2s ease;
}

.model-card:hover {
  border-color: #4a525d;

  transform: translateY(-4px);
}

.model-image {
  height: 300px;

  background: #0c0e11;

  overflow: hidden;
}

.model-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.model-info {
  padding: 15px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;
}

.model-info h3 {
  margin: 0 0 5px;

  font-size: 15px;
}

.model-info p {
  margin: 0;

  color: #6e7681;

  font-size: 12px;
}

.soon {
  padding: 6px 8px;

  border: 1px solid #303640;

  border-radius: 5px;

  color: #7a828d;

  font-size: 9px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
  margin: 0 7vw 70px;

  padding: 60px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 40px;

  background: #101216;

  border: 1px solid #292e36;

  border-radius: 16px;
}

.about p {
  color: #9299a3;

  line-height: 1.8;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  padding: 30px 7vw;

  display: flex;
  justify-content: space-between;

  border-top: 1px solid #20242a;

  color: #626a75;

  font-size: 12px;
}


/* =========================================================
   ADMIN
   ========================================================= */

.admin-page {
  max-width: 1100px;

  margin: 0 auto;

  padding: 70px 25px;
}

.admin-head h1 {
  margin: 12px 0;

  font-size: 54px;

  letter-spacing: -0.05em;
}

.admin-head p {
  color: #858d98;
}

.admin-card {
  margin-top: 30px;

  padding: 28px;

  background: #101216;

  border: 1px solid #292e36;

  border-radius: 14px;
}

.admin-card form {
  display: grid;

  gap: 18px;

  max-width: 650px;
}

.admin-card label {
  display: grid;

  gap: 8px;

  color: #9aa1aa;

  font-size: 13px;
}

.admin-card input,
.admin-card select,
.admin-card textarea {
  padding: 13px;

  background: #0a0c0f;

  border: 1px solid #303640;

  border-radius: 8px;

  color: #eee;

  outline: none;
}

.admin-card textarea {
  resize: vertical;
}

.admin-list-head {
  display: flex;

  align-items: center;
  justify-content: space-between;
}

.admin-item {
  display: flex;

  align-items: center;

  gap: 15px;

  padding: 12px 0;

  border-top: 1px solid #292e36;
}

.admin-item img {
  width: 55px;
  height: 55px;

  object-fit: contain;

  background: #0a0c0f;

  border-radius: 7px;
}

.admin-item strong {
  display: block;
}

.admin-item span {
  color: #69717c;

  font-size: 12px;
}

.delete {
  margin-left: auto;

  padding: 7px 10px;

  background: transparent;

  border: 1px solid #343a43;

  border-radius: 6px;

  color: #999;

  cursor: pointer;
}

.delete:hover {
  color: #fff;

  border-color: #626a75;
}


/* =========================================================
   ADMIN IMAGE GRID
   ========================================================= */

.upload-grid {
  min-height: 130px;

  padding: 18px;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(130px, 1fr));

  gap: 18px;

  border: 1px dashed #3a414b;

  border-radius: 10px;
}

.upload-thumb {
  width: 100%;

  position: relative;

  text-align: center;
}

.upload-image-wrap {
  width: 100%;
  height: 150px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #0a0c0f;

  border-radius: 8px;

  overflow: hidden;
}

.upload-image-wrap img {
  width: 100%;
  height: 150px;

  object-fit: contain;
}

.main-badge {
  position: absolute;

  top: 7px;
  left: 7px;

  z-index: 2;

  padding: 5px 9px;

  background: #fff;

  color: #000;

  border-radius: 6px;

  font-size: 11px;

  font-weight: 700;
}

.upload-thumb > div:last-child {
  display: flex !important;

  flex-direction: column !important;

  gap: 7px !important;

  width: 100% !important;

  margin-top: 8px !important;
}

.set-main-image,
.delete-image,
.delete-new-image {
  width: 100% !important;

  height: 36px;

  display: flex !important;

  align-items: center;
  justify-content: center;

  padding: 6px 8px !important;

  background: #111318 !important;

  border: 1px solid #414852 !important;

  border-radius: 6px;

  color: #fff !important;

  font-size: 12px;

  cursor: pointer;
}

.set-main-image:hover,
.delete-image:hover,
.delete-new-image:hover {
  background: #1a1e24 !important;

  border-color: #68717d !important;
}

.upload-thumb.main-selected {
  outline: 2px solid #fff;

  outline-offset: 3px;

  border-radius: 8px;
}


/* =========================================================
   AUTH
   ========================================================= */

.auth-page {
  min-height: calc(100vh - 76px);

  display: grid;

  place-items: center;

  padding: 70px 20px;
}

.auth-card {
  width: min(460px, 100%);

  padding: 40px;

  background: #101216;

  border: 1px solid #292e36;

  border-radius: 16px;
}

.auth-card h1 {
  margin: 14px 0;

  font-size: 44px;

  letter-spacing: -0.05em;
}

.auth-description {
  color: #858d98;

  line-height: 1.7;

  margin-bottom: 30px;
}

.auth-card form {
  display: grid;

  gap: 18px;
}

.auth-card label {
  display: grid;

  gap: 8px;

  color: #9aa1aa;

  font-size: 13px;
}

.auth-card input {
  width: 100%;

  padding: 14px;

  background: #0a0c0f;

  border: 1px solid #303640;

  border-radius: 8px;

  color: #eee;

  outline: none;
}

.auth-submit {
  width: 100%;
}


/* =========================================================
   ACCOUNT
   ========================================================= */

.account-card {
  width: min(620px, 100%);

  padding: 40px;

  background: #101216;

  border: 1px solid #292e36;

  border-radius: 16px;
}

.account-card h1 {
  margin: 14px 0;

  font-size: 48px;

  letter-spacing: -0.05em;
}

.account-description {
  color: #858d98;

  line-height: 1.7;
}

.account-info {
  margin-top: 25px;

  background: #0a0c0f;

  border: 1px solid #292e36;

  border-radius: 10px;

  overflow: hidden;
}

.account-row {
  padding: 16px;

  display: flex;

  justify-content: space-between;

  gap: 20px;

  border-bottom: 1px solid #292e36;
}

.account-row:last-child {
  border-bottom: 0;
}

.account-row span {
  color: #69717c;

  font-size: 12px;
}

.account-row strong {
  color: #eee;

  font-size: 13px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

  .character-layout {
    grid-template-columns: 1fr 1fr;

    gap: 35px;
  }

  .character-main-image {
    height: 560px;
  }

  .grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr));
  }

}


/* =========================================================
   900px
   ========================================================= */

@media (max-width: 900px) {

  .character-layout {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .character-main-image {
    height: 600px;
  }

  .character-details {
    padding-top: 0;
  }

  .info-grid {
    grid-template-columns:
      repeat(6, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .video-wrap {
    max-width: 100%;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .nav {
    height: 68px;

    padding: 0 18px;
  }

  .nav nav {
    display: none;
  }

  .nav-btn {
    padding: 8px 12px;

    font-size: 12px;
  }


  .character-layout {
    padding: 32px 18px 45px;

    gap: 30px;
  }

  .character-main-image {
    height: 440px;

    border-radius: 14px;
  }

  .gallery {
    gap: 9px;
  }

  .thumb {
    width: 70px;
    height: 70px;
  }

  .character-details h1 {
    font-size: 34px;

    line-height: 1.08;
  }

  .character-description {
    font-size: 14px;

    line-height: 1.7;
  }


  .info-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 9px;
  }

  .info-card:nth-child(1),
  .info-card:nth-child(2),
  .info-card:nth-child(3),
  .info-card:nth-child(4),
  .info-card:nth-child(5) {
    grid-column: span 1;
  }

  .info-card {
    min-height: 86px;

    padding: 13px;

    gap: 9px;
  }

  .info-icon {
    width: 36px;
    height: 36px;

    flex-basis: 36px;
  }

  .info-icon svg {
    width: 17px;
    height: 17px;
  }

  .info-card strong {
    font-size: 11px;
  }

  .access-card {
    align-items: flex-start;

    flex-wrap: wrap;

    padding: 16px;
  }

  .access-content {
    flex: 1 1 calc(100% - 60px);
  }

  .access-button {
    width: 100%;

    min-width: 0;
  }

  .access-learn-more {
    margin-left: 0;
    margin-top: 0;
  }


  .content-section,
  .comments-section {
    padding-left: 0;
    padding-right: 0;
  }

  .lower-content-grid {
    grid-template-columns: 1fr;

    padding: 42px 18px 70px;

    gap: 42px;
  }

  .video-column h2,
  .comments-column h2 {
    font-size: 26px;
  }


  .comment-login-box {
    align-items: flex-start;

    flex-direction: column;
  }


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

  .about {
    grid-template-columns: 1fr;

    margin-left: 18px;
    margin-right: 18px;

    padding: 30px 22px;
  }

  .hero {
    padding: 45px 20px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }


  .upload-grid {
    grid-template-columns:
      repeat(2, minmax(110px, 1fr));

    gap: 12px;
  }

  .upload-image-wrap,
  .upload-image-wrap img {
    height: 130px;
  }


  .auth-card,
  .account-card {
    padding: 28px 20px;
  }

}