* {
    box-sizing: border-box;
    margin: 0;
    font-family: poppins, sans-serif;
}

body {
    background-color: #000;
}

/* navbar section */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.02); 
    backdrop-filter: blur(5px);        
    -webkit-backdrop-filter: blur(5px); 
    z-index: 1000;
}

.navbar-left .logo {
    height: 35px;
    width: auto;
    display: block;
    transition: all .3s ease;
}

.navbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.site-name a {
    font-size: 1.2rem;
    font-weight: 400;
    text-decoration: none;
    color: #ffffff;
    transition: all .2s ease;
}

.site-name a:hover {
    color: #cecece;
}

.navbar-right {
    display: flex;
    gap: 1.5rem;
    font-size: .8rem;
}

.navbar-right a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 300;
    transition: color 0.2s ease;
}

.navbar-right a:hover {
    color: #cecece;
}

/* Responsive */
@media (max-width: 768px) {
.navbar-center {
    display: none;
}

.navbar {
    justify-content: space-between;
}
}

.section {
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    min-height: 100vh;
    height: auto;
    width: auto;
    color: #fff;
}

@keyframes animateNoise {
    0% {
      background-position: 0 0, center;
    }
    100% {
      background-position: 100px 100px, center;
    }
}

#sec-one {
    background-image: 
    url('/assets/noise-texture-one.png'),
    linear-gradient(to bottom right, #3c1d8b 0%, #a8a8ef 110%);
    background-blend-mode: soft-light;
    background-size: 10% auto, 100%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0, center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 101vh;
    z-index: 1;
    animation: animateNoise 1s steps(10) infinite;
}

.sec-one-content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    text-align: left;
    max-width: 100vw;
    margin: 50px;
}

.sec-one-content h1 {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1;
}

.subheader-container {
    margin: 0;
    height: 60px;
    overflow: hidden;
    text-align: left;
}

.subheader-wrapper {
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.68, 0, 0, 1);
}

.subheader {
    height: 60px;
    line-height: 60px;
    font-size: 2.5rem;
    color: #ffff;
    text-align: left;
}

@media (max-width: 768px) {

#sec-one {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    height: 100vh;
}

.sec-one-content {
    margin: 0;
    text-align: center;
}

.sec-one-content h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}

.sec-one-content  h2 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.subheader-container {
    height: 50px;
    display: flex;
    justify-content: center;
}

.subheader {
    line-height: 50px;
    font-size: 1.5rem;
    height: 50px;
    text-align: center;
}

.subheader-wrapper {
    align-items: center;
}
}

#sec-two {
    background-image: 
    url('/assets/noise-texture-one.png'), 
    linear-gradient(to bottom right,#0c0c0c, #2e2e2e);
    background-blend-mode: overlay;
    background-size: 10% auto, 100%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0, center;
    display: flex;
    justify-content: center;
    text-align: center;
    height: 100vh;
    border-top-right-radius: 350px;
    z-index: 2;
    animation: animateNoise 1s steps(10) infinite;
}

.sec-two-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    margin: 50px;
}

.sec-two-content h2 {
    font-weight: 400;
    font-size: 3rem;
}

.sec-two-content p {
    font-weight: 300;
    font-size: 2rem;
}

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

#sec-two {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
}

.sec-two-content {
    margin: 0;
}

.sec-two-content h2 {
    font-size: 1.75rem;
}

.sec-two-content h3 {
    font-size: 2rem;
}

.sec-two-content p {
    font-size: 1.4rem;
    max-width: 100%;
}
}

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

.sec-two-content h2 {
    margin: 15px 0px;
    font-size: 1.5rem;
}

.sec-two-content h3 {
    font-size: 1.75rem;
}

.sec-two-content p {
    font-size: 1.2rem;
}
}

#sec-three {
    background-image: 
    url('/assets/noise-texture-one.png'), 
    linear-gradient(to bottom right,#0c0c0c, #2e2e2e);
    background-blend-mode: overlay;
    background-size: 10% auto, 100%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0, center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    border-top-right-radius: 350px;
    z-index: 3;
    animation: animateNoise 1s steps(10) infinite;
}

.sec-three-content {
    color: #fff;
    margin: 50px;
    width: fit-content;
}

#sec-three h2 {
    color: #fff;
    font-weight: 400;
    font-size: 2rem;
}

.projects-subheader {
    font-size: 10px;
}

#sec-three h3 {
    color: #fff;
    font-weight: 400;
    font-size: 2rem;
}

.projects {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
}

.project-link {
    display: grid;
    grid-template-columns: 40px 450px 300px 50px;
    align-items: start;
    gap: 2.5rem;
    color: #c0c0c0;
    text-decoration: none;
    width: 100%;
    margin: .5rem 0;
    transition: transform 0.3s ease;
}

.project-link .name,
.project-link .number,
.project-link .info {
    transition: transform 0.3s ease, color 0.3s ease;
}

.project-link:hover .name,
.project-link:hover .number,
.project-link:hover .info {
    transform: translateX(5px);
    color: #fff;
}

.project-link p {
    margin: 0;
    padding: 0;
    font-size: inherit;
    vertical-align: top;
}

.number {
    line-height: 1.2;
    font-size: 16px;
    display: block;
}

.name {
    font-weight: 500;
    font-size: 54px;
    display: block;
    line-height: 1;
}

.info {
    line-height: 1.2;
    font-size: 16px;
    display: block;
}

.project-link i {
    color: #333333;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
    transform-origin: center
}

.project-link:hover i {
    transform: translateX(35px) scale(1.5);
    color: #885ff0;
}

.copyright {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-size: 10px;
    color: #fff;
}

.space-filler {
    min-height: 10px;
    width: 100%;
}

@media (max-width: 760px) {

.space-filler {
    min-height: 125px;
    width: 100%;
}

.sec-three-content {
    padding: 2rem;
    margin: 0;
    width: 100%;
}

.projects {
    width: 100%;
}

.project-link {
    display: block;
    padding: 1rem 0;
    margin: 0;
}

.project-link .number,
.project-link .name,
.project-link .info,
.project-link i {
    display: block;
    margin: 0.2rem 0;
}

.name {
    font-size: 28px;
}

.number,
.info {
    font-size: 14px;
}

.project-link i {
    float: right;
    font-size: 1.5rem;
    margin-top: -50px;
}

.project-link:hover .name,
.project-link:hover .number,
.project-link:hover .info {
    transform: translateX(5px);
}

.project-link:hover i {
    transform: translateX(10px);
}

.hoverlogo,
.hoverlogo-two,
.hoverlogo-three,
.hoverlogo-four {
    display: none;
}

.copyright {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 8px;
    color: #fff;
}
}

@media (max-width: 400px) {

.hoverlogo,
.hoverlogo-two,
.hoverlogo-three,
.hoverlogo-four {
    display: none;
}
}

/* HOVER LOGO SECTION */

.hoverlogo {
    position: absolute;
    right: 50px;
    transform: scale(0);
    margin: 1.5rem;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hoverlogo.scaled {
    transform: scale(1);
    opacity: 1;
}

.myl-logo {
    width: 250px;
}

.hoverlogo-two {
    position: absolute;
    right: 50px;
    transform: scale(0);
    margin: 1.5rem;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hoverlogo-two.scaled {
    transform: scale(1);
    opacity: 1;
}

.disclosed-logo {
    width: 225px;
}

.hoverlogo-three {
    position: absolute;
    right: 50px;
    transform: scale(0);
    margin: 1.5rem;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hoverlogo-three.scaled {
    transform: scale(1);
    opacity: 1;
}

.guardian-logo {
    width: 225px;
}

.hoverlogo-four {
    position: absolute;
    right: 50px;
    transform: scale(0);
    margin: 1.5rem;
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.hoverlogo-four.scaled {
    transform: scale(1);
    opacity: 1;
}

.kupu-logo {
    width: 250px;
}

/* ABOUT ME */

.about {
    background: linear-gradient(to bottom right,#0c0c0c, #262626);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: .9rem;
  max-width: 600px;
}

.btn {
  display: inline-block;
  background-color: #0c0c0c;
  color: #fff;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #333;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 2.5px 5px 25px 2px rgba(146, 87, 218, 0.15);
}

@media (max-width: 768px) {

  .about-image img {
    margin-top: 50px;

  }

  .about-container {
    flex-direction: column-reverse;
    text-align: left;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }
}

/* CONTACT */

.corner_toggle_wrapper {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1001;
}

#contact-toggle {
  padding: 0.5rem 1rem;
  font-size: 12px;
  border: none;
  border-radius: 5px;
  background: rgba(43, 18, 74, 0.1);
  border-top: solid 1.5px rgba(255, 255, 255, 0.25);
  border-left: solid 1.5px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); 
  color: #d9d9d9;
  transition: background 0.1s ease, transform 0.3s ease;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

#contact-toggle:hover {
  background: rgba(171, 120, 234, 0.1);
  color: #ffffff;
  cursor: pointer;
}

.corner_details {
  padding: 1rem;
  border-radius: 10px;
  background: rgba(43, 18, 74, 0.1);
  backdrop-filter: blur(5px);        
  -webkit-backdrop-filter: blur(5px); 
  border-top: solid 1.5px rgba(255, 255, 255, 0.25);
  border-left: solid 1.5px rgba(255, 255, 255, 0.25);
  width: 300px;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 12px;
  color: #d9d9d9;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

.corner_details.show {
  opacity: 1;
  visibility: visible;
  animation: fadeIn 0.3s ease forwards;
}

.corner_details.hide {
  animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(10px); }
}


.corner_right {
    text-align: right;
    transition: all 0.3s ease;
}

.contacts:hover {
    text-decoration: underline;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    cursor: pointer;
    color: #fff;
}

/* MADE YOU LOOK PAGE */

#myl-intro {
    height: 100vh;
    width: auto;
    background-image: 
      url(/images/myl-intro-bw.png);
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.myl-intro-content {
  position: relative;
  z-index: 2;
  margin: 50px;
  color: white;
}

.myl-intro-content h1 {
  font-family: 'dharma-gothic-m', sans-serif;
  font-size: 12rem;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: .8;
  transition: all .3s ease-out;
}

.myl-intro-content h1:hover {
    letter-spacing: 1px;
    cursor: crosshair;
}

.myl-intro-content h2 {
    font-weight: 300;
    margin-left: 2px;
}

@media (max-width: 768px) {
  .myl-intro-content h1 {
    font-size: 3.5rem;
    letter-spacing: 0;
  }

  .myl-intro-content h2 {
    font-size: 1rem;
  }
}

@media (max-width: 760px) {
  #myl-intro {
    height: auto;
    min-height: 80vh;
    padding: 20px;
  }
}

#myl-overview {
    margin-top: -1px;
    position: relative;
    min-height: 100vh; 
    width: 100%;
    border-top-right-radius: 350px;
    background-image: 
     url('/assets/'), 
     linear-gradient(to bottom right,#000000, #000000);
    background-blend-mode: screen;
    background-size: 7.5% auto, 100%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0, center;
    animation: animateNoise 1s steps(10) infinite;
    z-index: 2;
    padding-bottom: 2rem; 
}

.myl-overview-content {
    color: #fff;
    padding: 50px;
    max-width: 2000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.myl-overview-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.myl-overview-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.myl-overview {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.overview, .role {
    flex: 1 1 45%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.role {
    color: #fff;
    text-align: right;
}

.role p {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.role ul {
    padding-left: 1rem;
    list-style-type: none;
}

.role li {
    font-size: 0.8rem;
    margin-bottom: 0.1rem;
}

/* Responsive styles */
@media (max-width: 768px) {

.myl-overview {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
        justify-content: center;
        align-items: center;
    }

.myl-overview-content h2 {
        font-size: 1.75rem;
        padding: 0 1.5rem 1rem 1.5rem;
        text-align: left;
    }

.overview, .role {
        max-width: 100%;
        width: 100%;
        text-align: left;
}

.role {
        text-align: left;
    }

.role ul {
        padding-left: 1.25rem;
}

.overview h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
}

.overview p,
.role p,
.role li {
        font-size: 1rem;
        line-height: 1.6;
}
}

#myl-logo-design {
    margin-top: -1px;
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-image: 
    url('/assets/'), 
    linear-gradient(to bottom right,#000000, #000000);
    background-blend-mode: screen;
    background-size: 7.5% auto, 100%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0, center;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: animateNoise 1s steps(10) infinite;
    z-index: 3;
    padding: 50px;
    box-sizing: border-box;
}

.myl-logo-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 2000px;
    width: 100%;
    gap: 2rem;
    box-sizing: border-box;
}

.myl-logo-text {
    display: flex;
    flex-direction: column;
    color: #fff;
    max-width: 35vw;
    text-align: left; 
    font-size: 0.9rem;
}

.myl-logo-text h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.myl-logo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    flex-shrink: 0;
}

.myl-logo-big {
    width: 100%;
    max-height: 550px;
    height: auto;
    transition: all 0.3s ease;
}

.myl-logo-big:hover {
    cursor: crosshair;
    transform: rotate(5deg);
}

@media (max-width: 768px) {

#myl-logo-design {
    padding: 30px 20px;
    min-height: auto; 
}

.myl-logo-wrapper {
    flex-direction: column;
    align-items: flex-start; 
}

.myl-logo-content {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.myl-logo-text {
    order: 2;
    max-width: 100%;
    width: 100%;
    padding-top: 0;
    font-size: 1rem;
}

.myl-logo-text h3 {
    font-size: 1.5rem;
}

.myl-logo-big {
    max-height: 350px;
    max-width: 100%;
}
}

#myl-tee {
    margin-top: -1px;
    position: relative;
    width: 100%;
    background-image:
    url('/assets/'),
    linear-gradient(to bottom right, #000000, #000000);
    background-blend-mode: screen;
    background-size: 7.5% auto, 100%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0, center;
    animation: animateNoise 1s steps(10) infinite;
    z-index: 3;
    padding: 50px;
    box-sizing: border-box;
    color: #fff;
}

.myl-tee-content {
    max-width: 2000px;
    margin: 0 auto;
}

.myl-tee-content h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: left;
}

.myl-tee-content p {
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    text-align: left;
}

.tee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 2rem;
}

.tee-wrapper img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.tee-wrapper img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

@media (max-width: 992px) {

.tee-grid {
    grid-template-columns: repeat(2, 1fr);
}

.myl-tee-content p {
    max-width: 90vw;
}
}

@media (max-width: 600px) {

#myl-tee {
    padding: 30px 20px;
}

.myl-tee-content {
    margin: 0 auto;
}

.myl-tee-content h3 {
    font-size: 1.5rem;
    text-align: left;
}

.myl-tee-content p {
    font-size: 0.95rem;
    max-width: 100%;
}

.tee-grid {
    grid-template-columns: 1fr;
    gap: 15px;
}
}

#myl-web {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-image: 
    url('/assets/'), 
    linear-gradient(to bottom right, #000000, #000000);
    background-blend-mode: screen;
    background-size: 7.5% auto, 100%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0, center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    animation: animateNoise 1s steps(10) infinite;
    z-index: 5;
    flex-wrap: wrap;
    padding: 50px;
    box-sizing: border-box;
}

.myl-web-content {
    color: #fff;
    flex: 1 1 400px;
    margin-right: 2rem;
    max-width: 800px;
}

.myl-web-content h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.myl-web-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 35vw;
}

.web-img {
    flex: 1 1 400px;
    max-width: 700px;
    width: 100%;
    height: auto;
    margin-top: 100px;
}

@media (max-width: 1024px) {

#myl-web {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
}

.myl-web-content {
    margin: 0 0 30px 0;
    max-width: 100%;
}

.myl-web-content p {
    max-width: 100%;
}

.web-img {
    margin: 0;
    max-width: 100%;
    padding-top: 30px;
}
}

#myl-misc {
    position: relative;
    width: 100%;
    background-image: 
      url('/assets/'), 
      linear-gradient(to bottom right, #000000, #000000);
    background-blend-mode: screen;
    background-size: 7.5% auto, 100%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0, center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    animation: animateNoise 1s steps(10) infinite;
    z-index: 6;
    padding: 50px;
}

.myl-misc-content {
    color: #fff;
    max-width: 35vw;
    font-size: 0.9rem;
}

.myl-misc-content h3 {
    font-size: 2rem;
    font-weight: 400;
}

.anim-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 60vw;
}

.myl-poster,
.myl-anim {
    max-width: 300px;
    width: 100%;
    height: auto;
}

.myl-anim-alt {
    max-width: 1000px;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {

    #myl-misc {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    }

.myl-misc-content {
    max-width: 100%;
    margin-bottom: 30px;
}

.anim-wrapper {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.myl-poster,
.myl-anim {
    max-width: 100%;
}
}

#myl-graphic {
    position: relative;
    margin-top: -1px;
    min-height: fit-content;
    width: 100%;
    background-image: 
    url('/assets/'), 
    linear-gradient(to bottom right,#000000, #000000);
    background-blend-mode: screen;
    background-size: 7.5% auto, 100%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0, center;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: animateNoise 1s steps(10) infinite;
    z-index: 7;
}

.myl-graphic-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    margin-bottom: 100px;
    color: #fff;
    text-align: center;
}

.vinyl {
    width: auto;
    max-height: 550px;
    transition: all 0.3s ease-out;
}

@media (max-width: 768px) {

.myl-graphic-content {
    padding: 30px 20px;
}

.vinyl {
    max-height: 200px;
}

.copyright {
    font-size: 0.65rem;
}
}

/* DISCLOSED SECTION */

#disc-intro {
    height: 100vh;
    width: auto;
    background-image: 
      url(/images/disc-intro-bg.png);
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.disc-intro-content {
  position: relative;
  z-index: 2;
  margin: 50px;
  color: #000;
}

.disc-intro-content h1 {
  font-size: 10rem;
  font-weight: 400;
  line-height: 1;
  transition: all .3s ease-out;
}

.disc-intro-content h2 {
    font-weight: 300;
    margin-left: 8px;
}

@media (max-width: 768px) {

.disc-intro-content h1 {
    font-size: 3rem;
    letter-spacing: 0;
}

.disc-intro-content h2 {
    font-size: 1rem;
}
}

@media (max-width: 760px) {

#disc-intro {
    height: auto;
    min-height: 100vh;
    padding: 20px;
  }
}

#disc-overview {
    margin-top: -1px;
    position: relative;
    min-height: 100vh;
    width: 100%;
    border-top-right-radius: 350px;
    background-image: 
        url('/assets/'), 
        linear-gradient(to bottom right,#000000, #000000);
    background-blend-mode: screen;
    background-size: 7.5% auto, 100%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0, center;
    animation: animateNoise 1s steps(10) infinite;
    z-index: 2;
    padding-bottom: 2rem;
}

.disc-overview-content {
    color: #fff;
    padding: 50px;
    max-width: 2000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.disc-overview-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.disc-overview-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.disc-overview {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.overview, .role {
    flex: 1 1 45%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    box-sizing: border-box;
}

.role {
    color: #fff;
    text-align: right;
}

.role p {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.role ul {
    padding-left: 1rem;
    list-style-type: none;
}

.role li {
    font-size: 0.8rem;
    margin-bottom: 0.1rem;
}

/* Responsive styles */
@media (max-width: 768px) {

.disc-overview {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
        justify-content: center;
        align-items: center;
    }

.disc-overview-content h2 {
        font-size: 1.75rem;
        padding: 0 1.5rem 1rem 1.5rem;
        text-align: left;
    }

.overview, .role {
        max-width: 100%;
        width: 100%;
        text-align: left;
}

.role {
        text-align: left;
    }

.role ul {
        padding-left: 1.25rem;
}

.overview h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
}

.overview p,
.role p,
.role li {
        font-size: 1rem;
        line-height: 1.6;
}
}

#disc-idea-one,
#disc-idea-two {
    margin-top: -1px;
    position: relative;
    min-height: fit-content;
    width: 100%;
    background-image: 
    url('/assets/'), 
    linear-gradient(to bottom right,#000000, #000000);
    background-blend-mode: screen;
    background-size: 7.5% auto, 100%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0, center;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: animateNoise 1s steps(10) infinite;
    z-index: 3;
    padding: 50px;
    box-sizing: border-box;
}

.disc-img-big {
    width: 100%;
    max-height: 750px;
    height: auto;
    transition: all 0.3s ease;
}

#disc-one {
    margin-top: -1px;
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-image: 
    url('/assets/'), 
    linear-gradient(to bottom right,#000000, #000000);
    background-blend-mode: screen;
    background-size: 7.5% auto, 100%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0, center;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: animateNoise 1s steps(10) infinite;
    z-index: 3;
    padding: 50px;
    box-sizing: border-box;
}

.disc-one-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 2000px;
    width: 100%;
    gap: 2rem;
    box-sizing: border-box;
}

.disc-one-text {
    display: flex;
    flex-direction: column;
    color: #fff;
    max-width: 35vw;
    text-align: left;
    font-size: 0.9rem;
}

.disc-one-text h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.disc-logo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    flex-shrink: 0;
}

.disc-logo-big {
    width: 100%;
    max-height: 550px;
    height: auto;
    transition: all 0.3s ease;
}

.disc-logo-big:hover {
    cursor: crosshair;
    transform: rotate(5deg);
}

@media (max-width: 768px) {

#disc-one-design {
    padding: 30px 20px;
    min-height: auto;
}

.disc-one-wrapper {
    flex-direction: column;
    align-items: flex-start;
}

.disc-one-content {
    order: 1;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.disc-one-text {
    order: 2;
    max-width: 100%;
    width: 100%;
    padding-top: 0;
    font-size: 1rem;
}

.disc-one-text h3 {
    font-size: 1.5rem;
}

.disc-one-big {
    max-height: 300px;
}
}

#disc-four {
    position: relative;
    margin-top: -1px;
    min-height: fit-content;
    width: 100%;
    background-image: 
    url('/assets/'), 
    linear-gradient(to bottom right,#000000, #000000);
    background-blend-mode: screen;
    background-size: 7.5% auto, 100%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0, center;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: animateNoise 1s steps(10) infinite;
    z-index: 7;
}

.disc-four-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    margin-bottom: 100px;
    color: #fff;
    text-align: center;
}

@media (max-width: 768px) {

.disc-four-content {
    padding: 30px 20px;
}

.copyright {
    font-size: 0.65rem;
}
}

#disc-two {
    margin-top: -1px;
    position: relative;
    width: 100%;
    background-image:
    url('/assets/'),
    linear-gradient(to bottom right, #000000, #000000);
    background-blend-mode: screen;
    background-size: 7.5% auto, 100%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0, center;
    animation: animateNoise 1s steps(10) infinite;
    z-index: 3;
    padding: 50px;
    box-sizing: border-box;
    color: #fff;
}

.disc-two-content {
    max-width: 2000px;
    margin: 0 auto;
}

.disc-two-content h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: left;
}

.disc-two-content p {
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    text-align: left;
}

.disc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 2rem;
}

.disc-wrapper img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: contain;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.disc-wrapper-alt img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.disc-wrapper img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

@media (max-width: 992px) {

.disc-grid {
    grid-template-columns: repeat(2, 1fr);
}

.disc-two-content p {
    max-width: 90vw;
}
}

@media (max-width: 600px) {

#disc-two {
    padding: 30px 20px;
}

.disc-two-content {
    margin: 0 auto;
}

.disc-two-content h3 {
    font-size: 1.5rem;
    text-align: left;
}

.disc-two-content p {
    font-size: 0.9rem;
    max-width: 100%;
}

.disc-grid {
    grid-template-columns: 1fr;
    gap: 15px;
}
}

#disc-three {
    top: -1px;
    position: relative;
    width: 100%;
    background-image: 
      url('/assets/'), 
      linear-gradient(to bottom right, #000000, #000000);
    background-blend-mode: screen;
    background-size: 7.5% auto, 100%;
    background-repeat: repeat, no-repeat;
    background-position: 0 0, center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    animation: animateNoise 1s steps(10) infinite;
    z-index: 6;
    padding: 50px;
}

.disc-three-content {
    color: #fff;
    max-width: 35vw;
    font-size: 0.9rem;
}

.disc-three-content  h3 {
    font-size: 2rem;
    font-weight: 400;
}

.motion-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 60vw;
}

.disc-motion {
    max-width: 800px;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {

#disc-three {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
}

.disc-three-content {
    max-width: 100%;
    margin-bottom: 30px;
}

.motion-wrapper {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.disc-motion {
    max-width: 100%;
}
}

/* GUARDIAN SECTION */

#guardian-intro {
    height: 100vh;
    width: auto;
    background-image: 
      url(/images/guardian-bg.png);
    background-size: cover; 
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.guardian-intro-content {
  position: relative;
  z-index: 2;
  margin: 50px;
  color: #fff;
}

.guardian-intro-content h1 {
  font-size: 10rem;
  font-weight: 600;
  line-height: 1;
  transition: all .3s ease-out;
}

.guardian-intro-content h2 {
    font-weight: 300;
    margin-left: 8px;
}

@media (max-width: 768px) {

.guardian-intro-content h1 {
    font-size: 3rem;
    letter-spacing: 0;
}

.guardian-intro-content h2 {
    font-size: 1rem;
}
}

@media (max-width: 760px) {

#guardian-intro {
    height: auto;
    min-height: 100vh;
    padding: 20px;
  }
}