* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100%;
    font-family: "Inter", sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.cursor {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 30px;
    z-index: 1000;
}

p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.5;
}

p#logo {
  opacity: 1;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 1.5em 2em;
  display: flex;
  align-items: center;
  z-index: 60;
}

.site-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  align-items: flex-start;
}

.site-info #logo {
  font-weight: 700;
  font-size: 1.05rem;
  font-family: "Inter";
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 2em;
  z-index: 2;
}

.nav-links a {
  font-family: "Inter";
  font-size: 13px;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #fff;
  font-family: "Inter";
  font-size: 13px;
  font-weight: 400;
}

nav > div.site-info {
  flex: 0 0 auto;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.container {
    width: 100vw;
    min-height: 100vh;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.marquee-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
}

.marquee-wrapper.t-1 {
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
    user-select: none;
}

h1 {
    position: absolute;
    top: 50%;
    left: -100%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 240px;
    text-transform: uppercase;
    font-weight: 400;
    width: 100%;
    white-space: nowrap;
    animation: marquee 10s linear infinite;
    color: #fff;
}

@keyframes marquee {
    0% { transform: translate(0%, -50%); }
    50% { transform: translate(-5%, -50%); }
    50.5% { transform: translate(-5%, -50%); }
    100% { transform: translate(0%, -50%); }
}

.modal {
    position: relative;
    margin: 0 auto;
    padding-top: 10vh;
    padding-bottom: 5vh;
    width: 500px;
    max-width: 90vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.modal-images {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 50vh;
}

.role {
    margin: 5px 0;
}

.img {
    position: absolute;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 50vh;
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
}

.img#t-1 {
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 0% 0%);
}

.info {
    margin-top: 24px;
}

.info .name {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    opacity: 1;
}

.info .role {
    color: #fff;
    opacity: 0.5;
}

.t-1 {
    background: #000;
}

/* Scrollable content section */
.about-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-block {
    margin-bottom: 4rem;
}

.content-block h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
    opacity: 1;
}

.content-block p.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    opacity: 0.7;
}

/* Social Links Styles */
.socials-block {
    margin-bottom: 5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-link.youtube:hover {
    border-color: #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.social-link.instagram:hover {
    border-color: #E1306C;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.2);
}

.social-link.tiktok:hover {
    border-color: #00f2ea;
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.2);
}

.social-link.twitter:hover {
    border-color: #1DA1F2;
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.2);
}

@media(max-width: 900px) {
    /* Navbar adjustments */
    nav {
        padding: 1em 1.5em;
    }
    
    .nav-links {
        gap: 1.2em;
        font-size: 14px;
    }
    
    .site-info #logo {
        font-size: 1rem;
    }
    
    /* Marquee text size adjustment */
    h1 {
        font-size: 120px;
    }
    
    /* Modal container - centered properly */
    .modal {
        width: 100%;
        max-width: 90vw;
        padding-top: 15vh;
        padding-bottom: 10vh;
        margin: 0 auto;
    }

    /* Image container - properly centered */
    .modal-images {
        width: 100%;
        aspect-ratio: 3 / 4;
        max-height: 45vh;
        position: relative;
        margin: 0 auto;
    }

    /* Image - centered within container */
    .img {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 100%;
        aspect-ratio: 3 / 4;
        max-height: 45vh;
    }
    
    /* Info section spacing */
    .info {
        margin-top: 20px;
        text-align: center;
    }
    
    .info .name {
        font-size: 18px;
    }
    
    .info .role {
        font-size: 14px;
    }
    
    /* About content section */
    .about-content {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .content-block {
        margin-bottom: 3rem;
    }
    
    .content-block h2 {
        font-size: 1.75rem;
    }
    
    .content-block p.description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Social links */
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.2rem;
    }
    
    /* Scroll arrow positioning */
    .scroll-arrow {
        bottom: 80px;
    }
}

/* Large screen adjustments (Mac, desktop monitors) */
@media (min-width: 1400px) {
    .modal {
        width: 600px;
        max-width: 45vw;
    }

    .modal-images {
        aspect-ratio: 3 / 4;
        max-height: 55vh;
    }

    .img {
        aspect-ratio: 3 / 4;
        max-height: 55vh;
    }

    h1 {
        font-size: 280px;
    }
}

@media (min-width: 1800px) {
    .modal {
        width: 700px;
        max-width: 40vw;
    }

    .modal-images {
        aspect-ratio: 3 / 4;
        max-height: 50vh;
    }

    .img {
        aspect-ratio: 3 / 4;
        max-height: 50vh;
    }
}