/* ========================================================================== */
/* ===================== ALL PAGES | GENERAL PROPERTIES ===================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

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

body {
  background-color: #f9fafe;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #6e7191;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  color: #14142b;
  font-size: 30px;
  line-height: 34px;
  font-weight: 500;
}

h2 {
  margin-bottom: 8px;
  color: #14142b;
  font-size: 26px;
  line-height: 38px;
  font-weight: 500;
}

h3 {
  margin-bottom: 8px;
  color: #14142b;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}

p {
  margin-bottom: 0;
}

img {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}

.website-container {
  width: min(938px, calc(100% - 48px));
  margin: 72px auto 0;
  max-width: 100%;
}


/* ========================================================================== */
/* ========================= HOME | PROFILE HEADER ========================== */

.profile-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  margin-bottom: 44px;
  padding: 40px 0;
  border: 1px solid #f4f5fa;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 3px 20px 0 rgba(20, 20, 43, 0.05);
}

.profile-header-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(28px, 5%, 48px);
  padding: 0 clamp(32px, 6%, 54px);
}

.profile-cover {
  width: clamp(190px, 28%, 235px);
  flex: 0 0 auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 32px;
}

.profile-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-header-text {
  flex: 1 1 auto;
  min-width: 0;
  margin-left: 0;
  max-width: 650px;
}

.profile-category {
  color: #6a35ff;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.profile-header-text h1 {
  margin-top: 8px;
}

.profile-description {
  margin-top: 12px;
  font-size: 19px;
}

.profile-author {
  margin-top: 24px;
  color: #14142b;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}


/* ========================================================================== */
/* ========================= HOME | WEBSITE CONTENT ============================ */

.website-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  margin-bottom: 44px;
  padding: 60px 0;
  border: 1px solid #f4f5fa;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 3px 20px 0 rgba(20, 20, 43, 0.05);
}

.website-content-inner {
  position: relative;
  z-index: 1;
  padding: 0 clamp(26px, 12%, 110px);
}

.section-introduction {
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-introduction p {
  margin-top: 8px;
}


/* ========================= SOCIAL PLATFORM LINKS ========================= */

.social-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  margin-top: 32px;
  margin-bottom: 80px;
}

.social-platform {
  display: flex;
  align-items: center;
  padding: 20px 16px;
  border: 1px solid #ebecf3;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(20, 20, 43, 0.03);
  color: #6e7191;
  text-decoration: none;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.social-platform:hover {
  box-shadow: 0 1px 5px 0 rgba(20, 20, 43, 0.02);
  transform: scale3d(0.94, 0.94, 1.01);
  color: #6e7191;
}

.social-platform-details {
  display: flex;
  align-items: center;
}

.social-platform-details,
.social-platform-name,
.content-details,
.feature-content {
  min-width: 0;
}

.social-platform-name,
.content-details h3,
.feature-content h3 {
  overflow-wrap: anywhere;
}

.social-platform-icon {
  display: flex;
  width: 46px;
  height: 46px;
  min-width: 46px;
  padding: 0 3px;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  background-color: #ff3951;
  box-shadow: 0 6px 8px 0 rgba(255, 57, 81, 0.2);
  transition: transform 350ms ease;
}

.social-platform-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(1);
}



/* Optical sizing - keeps each logo looking visually balanced */
.social-platform-icon.youtube img {
  width: 25px;
  height: 25px;
}

.social-platform-icon.instagram img {
  width: 27px;
  height: 27px;
}

.social-platform-icon.tiktok img {
  width: 28px;
  height: 28px;
}

.social-platform-icon.facebook img {
  width: 29px;
  height: 29px;
}

.social-platform-icon.twitch img {
  width: 26px;
  height: 26px;
}

.social-platform-icon.snapchat img {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%);
}

.social-platform-icon:hover {
  transform: scale3d(0.94, 0.94, 1.01);
}

.social-platform-icon.youtube {
  background-color: #ff0000;
  box-shadow: 0 6px 8px 0 rgba(255, 0, 0, 0.18);
}

.social-platform-icon.instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 6px 8px 0 rgba(225, 48, 108, 0.18);
}

.social-platform-icon.tiktok {
  background-color: #111;
  box-shadow: 0 6px 8px 0 rgba(17, 17, 17, 0.18);
}

.social-platform-icon.facebook {
  background-color: #1877f2;
  box-shadow: 0 6px 8px 0 rgba(24, 119, 242, 0.18);
}

.social-platform-icon.twitch {
  background-color: #9146ff;
  box-shadow: 0 6px 8px 0 rgba(145, 70, 255, 0.18);
}

.social-platform-icon.snapchat {
  border: 1px solid #f0ec00;
  background-color: #fffc00;
  box-shadow: 0 6px 8px 0 rgba(255, 252, 0, 0.18);
}

.social-platform-name {
  margin-left: 12px;
  color: #14142b;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}

.social-platform-arrow {
  display: none;
}


/* ============================= LATEST CONTENT ============================ */

.content-heading {
  margin-bottom: 8px;
}

.content-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.content-card {
  display: flex;
  align-items: center;
  padding: 12px 32px 12px 12px;
  border: 1px solid #ebecf3;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(20, 20, 43, 0.03);
  color: #6e7191;
  text-decoration: none;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.content-card:hover {
  box-shadow: 0 2px 6px 0 rgba(20, 20, 43, 0.02);
  transform: scale3d(0.96, 0.96, 1.01);
  color: #6e7191;
}

.content-cover {
  overflow: hidden;
  border-radius: 20px;
}

.content-details {
  margin-left: 32px;
}

.content-details h3 {
  margin-bottom: 8px;
}

.content-meta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid #ebecf3;
}

.content-action,
.content-number,
.feature-name,
.feature-action {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.content-action,
.feature-action {
  color: #ff3951;
}

.content-number {
  color: #14142b;
}

.play-icon {
  position: relative;
  top: 2px;
  display: inline-block;
  margin-right: 6px;
  color: #ff3951;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
}


/* ============================= FEATURED SECTIONS ============================ */

.section-divider {
  width: 100%;
  height: 1px;
  margin: 80px 0;
  background-color: #eef0f5;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.feature-card {
  padding: 18px 18px 40px;
  border: 1px solid #ebecf3;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(20, 20, 43, 0.03);
  color: #6e7191;
  text-decoration: none;
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.feature-card:hover {
  box-shadow: 0 2px 6px 0 rgba(20, 20, 43, 0.02);
  transform: scale3d(0.96, 0.96, 1.01);
  color: #6e7191;
}

.feature-image {
  overflow: hidden;
  border-radius: 20px;
}

.feature-content {
  margin-top: 16px;
}

.feature-name {
  margin-bottom: 8px;
}

.feature-content h3 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 24px;
}

.feature-action {
  margin-bottom: 0;
}


/* =============================== NEWSLETTER =============================== */

.newsletter-section {
  margin-top: 40px;
  padding: 72px 48px;
  border: 1px solid #f4f5fa;
  border-radius: 24px;
  background-color: #fff;
  box-shadow: 0 3px 12px 0 rgba(20, 20, 43, 0.03);
}

.newsletter-section p {
  margin-bottom: 0;
}

.newsletter-form-container {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 15px;
}

.newsletter-form {
  position: relative;
}

.newsletter-email {
  display: block;
  width: 100%;
  height: 70px;
  margin: 0;
  padding: 16px 24px 18px;
  border: 1px solid #ebecf3;
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 0 2px 6px 0 rgba(20, 20, 43, 0.07);
  color: #333;
  font-size: 16px;
  line-height: 18px;
  transition: box-shadow 350ms ease, border-color 350ms ease;
}

.newsletter-email:hover,
.newsletter-email:focus {
  border-color: #ff3951;
  outline: 0;
}

.newsletter-email:hover {
  box-shadow: 0 4px 9px 0 rgba(20, 20, 43, 0.11);
}

.newsletter-email:focus {
  color: #14142b;
}

.newsletter-email::placeholder {
  color: #6e7191;
}

.newsletter-button,
.footer-primary-button {
  border: 0;
  border-radius: 80px;
  background-color: #ff3951;
  box-shadow: 0 3px 8px 0 rgba(255, 57, 81, 0.25);
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease;
}

.newsletter-button:hover,
.footer-primary-button:hover {
  background-color: #ff3951;
  box-shadow: 0 2px 6px 0 rgba(255, 57, 81, 0.13);
  transform: scale3d(0.94, 0.94, 0.01);
  color: #fff;
}

.newsletter-button {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  padding: 16px 32px;
}


/* ============================ BACKGROUND BLURS ============================ */

.background-blur {
  position: absolute;
  max-width: 550px;
  pointer-events: none;
}

.background-blur-top {
  top: 8%;
  right: -27%;
}

.background-blur-bottom {
  right: -20%;
  bottom: -8%;
}

.background-blur-bottom-left {
  left: -20%;
  bottom: -8%;
}

.background-blur-top-left {
  top: 8%;
  left: -27%;
}

/* ========================== SECTION DECORATIONS ========================== */

/*
  These sections allow their corner artwork to hang outside the card.
  Other website-content cards can keep overflow: hidden.
*/
.life-section,
.gaming-section {
}

.section-decoration {
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Life & Adventures - Vines */
.life-vines {
  /*
    Fixed width keeps the vines from shrinking on mobile.
    Change top / left to reposition them.
  */
  width: 200px;
  top: -25px;
  left: -25px;
  opacity: 0.75;
}

/* Gaming & Live Streams - Controller */
.gaming-controller {
  /*
    Fixed width keeps the controller consistent on smaller screens.
    Change top / right to reposition it.
  */
  width: 220px;
  top: -20px;
  right: -40px;
  opacity: 1;
}

.gaming-controller-paint {
  /*
    Fixed width keeps the controller consistent on smaller screens.
    Change top / right to reposition it.
  */
  width: 250px;
  top: -50px;
  right: -80px;
  opacity: 0.65;
}

/* ========================================================================== */
/* ============================= ALL PAGES | FOOTER ========================= */

.footer-container {
  margin-top: 80px;
  padding: 28px 0;
  background-color: #fff;
  box-shadow: 0 -1px 10px 0 rgba(20, 20, 43, 0.03);
}

.footer-content {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  width: 148px;
  transition: transform 350ms ease;
}

.footer-logo:hover {
  transform: scale3d(0.94, 0.94, 1.01);
}

.footer-navigation {
  display: flex;
}

.footer-navigation-button {
  display: flex;
  padding: 16px 48px;
  border: 1px solid #f4f5fa;
  border-radius: 80px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(20, 20, 43, 0.08);
  color: #6e7191;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: transform 350ms ease, color 300ms ease, background-color 300ms ease;
}

.footer-navigation-button:hover {
  background-color: #ff3951;
  transform: scale3d(0.94, 0.94, 1.01);
  color: #fff;
}

.footer-navigation-button.previous-page {
  margin-right: 8px;
}

.footer-navigation-button.next-page {
  margin-left: 8px;
}

.footer-arrow {
  font-size: 12px;
  font-weight: 400;
}

.footer-arrow-left {
  margin-right: 8px;
  transform: rotate(-180deg);
}

.footer-arrow-right {
  margin-left: 8px;
}

.footer-primary-button {
  display: inline-block;
  padding: 18px 48px;
}


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

@media screen and (max-width: 991px) {

  .footer-navigation-button {
    width: 60px;
    height: 60px;
    padding: 0;
    justify-content: center;
    align-items: center;
  }

  .footer-button-text {
    display: none;
  }

  .footer-arrow-left,
  .footer-arrow-right {
    margin: 0;
  }

}


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

@media screen and (max-width: 700px) {

  /* Keep decorative artwork at the same size on mobile */
  .life-vines {
    width: 170px;
  }

  .gaming-controller {
    width: 170px;
  }

  .gaming-controller-paint {
    width: 190px;
  }

  h1 {
    font-size: 28px;
    line-height: 32px;
  }

  h2 {
    font-size: 24px;
    line-height: 34px;
  }

  h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .website-container {
    width: min(938px, calc(100% - 36px));
    margin-top: 42px;
  }

  .profile-header-content {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-right: 32px;
    padding-left: 32px;
  }

  .profile-cover {
    width: min(210px, 55%);
  }

  .profile-header-text {
    width: 100%;
    max-width: 520px;
    margin: 24px auto 0;
    text-align: center;
  }

  .profile-author {
    font-size: 16px;
  }

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

  .social-platform {
    justify-content: space-between;
  }

  .social-platform-arrow {
    display: flex;
    width: 44px;
    height: 44px;
    min-width: 44px;
    justify-content: center;
    align-items: center;
    border: 1px solid #f9fafe;
    border-radius: 60px;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(20, 20, 43, 0.06);
  }

  .content-details {
    display: flex;
    flex-direction: column-reverse;
  }

  .content-meta {
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 0;
    border-top: 0;
  }

  .content-action,
  .feature-action {
    display: none;
  }

  .content-number {
    color: #6e7191;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-container {
    padding: 22px 18px 55px;
  }

  .footer-content {
    padding: 0;
  }

  .footer-navigation-button {
    width: 50px;
    height: 50px;
  }

  .footer-primary-button {
    display: none;
  }

}


/* ========================================================================== */
/* =========================== SMALL MOBILE RESPONSIVE ====================== */

@media screen and (max-width: 479px) {

  body {
    background-color: #f9fafe;
  }

  .website-container {
    width: calc(100% - 28px);
    margin-top: 24px;
  }

  .profile-header,
  .website-content {
    margin-bottom: 24px;
    border: 1px solid #f4f5fa;
    border-radius: 20px;
    box-shadow: 0 3px 20px 0 rgba(20, 20, 43, 0.05);
  }

  .profile-header {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .profile-header-content {
    padding-right: 24px;
    padding-left: 24px;
  }

  .profile-cover {
    width: min(170px, 52%);
    max-width: 170px;
    border-radius: 20px;
  }

  .profile-category {
    font-size: 13px;
    line-height: 13px;
  }

  .profile-author {
    font-size: 20px;
    font-weight: 500;
  }

  .website-content {
    padding: 40px 0;
  }

  .social-platform {
    padding-right: 16px;
    padding-left: 16px;
    border-radius: 18px;
  }

  .social-platform-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .social-platform-name {
    margin-top: 6px;
    margin-right: 14px;
    margin-bottom: 6px;
    font-size: 19px;
    line-height: 30px;
  }

  .social-platform-arrow {
    width: 44px;
    height: 44px;
    min-height: 44px;
    min-width: 44px;
    font-size: 14px;
  }

  .content-list {
    gap: 14px;
  }

  .content-card {
    padding-right: 22px;
    border-radius: 18px;
  }

  .content-cover {
    width: 100%;
    max-width: 170px;
  }

  .content-details {
    margin-left: 22px;
  }

  .section-divider {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .feature-card {
    display: flex;
    align-items: center;
    padding: 14px 16px 14px 12px;
    border-radius: 18px;
  }

  .feature-image {
    width: 100%;
    max-width: 170px;
  }

  .feature-content {
    margin-top: 0;
    margin-left: 22px;
  }

  .feature-content h3 {
    margin-bottom: 0;
    font-size: 19px;
    line-height: 26px;
  }

  .newsletter-section {
    margin-top: 32px;
    padding: 48px 22px;
  }

  .newsletter-form-container {
    margin-top: 22px;
  }

  .newsletter-email {
    height: 56px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 18px;
  }

  .newsletter-button {
    position: static;
    width: 100%;
    padding: 20px 32px;
    font-size: 16px;
    line-height: 18px;
  }

  .background-blur-bottom {
    right: -31%;
    bottom: 1%;
  }

  .footer-container {
    margin-top: 40px;
    padding-right: 24px;
    padding-left: 24px;
    box-shadow: 0 -2px 10px 0 rgba(20, 20, 43, 0.07);
  }

  .footer-logo {
    width: 143px;
  }

  .footer-navigation-button {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }

  .footer-navigation-button.previous-page {
    margin-right: 6px;
  }

  .footer-navigation-button.next-page {
    margin-left: 6px;
  }

  .footer-arrow {
    font-size: 14px;
  }

}
