html {
    background-color: #121212;
    overflow-y: hidden;
}

.parent {
    height: 100vh;
    display: flex;
    align-items: center;
    margin-right: 6vw;
}

.titles {
    display: flex;
    width: 40vw;
    height: 90vh;
    margin-left: 10vw;
    align-items: center;
    justify-content: left;
    transition: all 0.3s ease;
}

.titles-container {
    margin-left: 2vw;
    justify-content: left;
    margin-bottom: 0px;
} 

.title-text {
    color: #FFFFFF;
    font-size: 58px;
    font-family: Inter;
    margin: 0 auto;
    -ms-user-select: none; 
    -moz-user-select: none; 
    -webkit-user-select: none; 
    user-select: none; 
    white-space: nowrap;
}

.main-info {
    margin-top: 2vh;
    display: flex;
    flex-direction: column;
    width: 30vw;
    height: 80vh;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 40px;
    position: relative;
    flex-shrink: 0;
}

.main-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.5) 30%,
    rgba(242, 242, 242, 0) 5%,
    rgba(255, 255, 255, 0.5) 30%
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.nickname-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 8vh;
}

.nickname-text {
    color: #FFFFFF;
    font-family: Inter;
    font-size: 57px;
    margin: 0;
}

.banner-container {
    margin-top: 1vh;
    height: 18vh;
    display: flex;
    align-items: center;
    gap: 30px;
}

.image-container {
    display: flex;
    width: 100px;
    height: 100px;
}

.description-container {
    margin-top: 2vh;
    height: 20vh;
}

.description-text {
    margin: 0;
    text-align: center;
    color: #FFFFFF;
    font-family: Inter;
    font-size: 44px;
}

.links-container {
    margin-top: 30px;
}

.link-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    height: 10vh;
    width: auto;
}

.text-link {
    color: #FFFFFF;
    font-size: 50px;
    font-family: Inter;
    align-items: center;
}

.link-image {
    margin-right: 30px;
}

.copy-notification {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #FFFFFF;
    font-family: Inter;
    font-size: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.copy-notification.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 2000px) {
    .titles {
        margin-left: 10vw;
        margin-right: 10vw;
    }
}
@media (max-width: 1800px) {
    .titles {
        margin-left: 8vw;
        margin-right: 10vw;
    }
}

@media (max-width: 1700px) {
    .titles {
        margin-left: 6vw;
        margin-right: 7vw;

    }
}
@media (max-width: 1500px) {
    .titles {
        margin-left: 2vw;
        margin-right: 8vw;
    }
}

@media (max-width: 1400px) {
    .titles {
        margin-left: 1vw;
        margin-right: 9vw;
    }
}

@media (max-width: 1300px) {
    .titles {
        margin-right: 15vw;
        margin-left: 0.5vw;
    }
}

/* Полное исчезновение titles и центрирование main-info */
@media (max-width: 1600px) {
    .titles {
        display: none;
    }

    .parent {
        justify-content: center;
        margin-right: 0;
    }
    
    .main-info {
        width: 80vw;
        max-width: 800px;
    }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .main-info {
        width: 90vw;
        height: auto;
        min-height: 80vh;
        margin: 5vh 0;
        padding: 2vh 0;
    }
    
    .banner-container {
        flex-direction: column;
        height: 25vw;
        margin-top: 3vh;
        margin-bottom: 0;
    }
    
    .image-container {
        align-items: center;
        justify-content: center;
    }
    .nickname-container {
        height: auto;
        margin-top: 0vh;
    }
    
    .description-container {
        height: auto;
        margin: 3vh 0;
        margin-top: 8vh;
    }
    
    .description-text {
        font-size: 6vw;
    }
    
    .nickname-text {
        font-size: 8vw;
    }
    
    .text-link {
        font-size: 6vw;
    }
    
    .link-container {
        height: 8vh;
    }
    
    .image-container {
        width: 25vw;
        height: 25vw;
        margin: 0;
    }
    
    .link-image img {
        width: 8vw;
        height: 8vw;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .description-text {
        font-size: 7vw;
    }
    
    .nickname-text {
        font-size: 9vw;
    }
    
    .text-link {
        font-size: 7vw;
    }
}