@font-face {
    font-family: 'ArchivoBlack';
    src: url('fonts/ArchivoBlack-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'ArchivoBlack', 'Arial', sans-serif;
    background: #000;
    overflow-x: hidden;
}

.character-section {
    min-height: 100vh;
    width: 100vw;
    background: linear-gradient(180deg, #000 0%, #000 50%, #1a1a1a 80%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Mobile Section with Reversed Gradients - видна только на мобильных */
.mobile-section {
    display: none;
    min-height: 100vh;
    width: 100vw;
    background: linear-gradient(180deg, #1a1a1a 0%, #000 30%, #000 70%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.mobile-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15vh;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, #000 100%);
    pointer-events: none;
    z-index: 1;
}

.mobile-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    z-index: 2;
}

/* Mobile Name image слева от персонажа */
.mobile-name-image-left {
    position: relative;
    width: 100%;
    max-width: 90%;
    text-align: center;
    z-index: 5;
}

.mobile-name-left {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    margin-bottom: 4vh;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

/* Контейнер информации под name.png для мобильных */
.mobile-info-container {
    display: flex;
    flex-direction: column;
    gap: 3vh;
    margin-top: 2vh;
    max-width: 100%;
}

/* Текст для мобильных */
.mobile-info-text {
    color: white;
    text-align: center;
}

.mobile-info-text h3 {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-info-text p {
    font-size: clamp(0.8rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Кнопки для мобильных */
.mobile-info-buttons {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    align-items: center;
}

.mobile-info-btn {
    padding: 1vw;
    border-radius: 0.5vw;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 200px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 8px rgba(255, 255, 255, 0.1),
        0 2px 4px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.mobile-info-link {
    text-decoration: none;
    color: white;
}

.mobile-info-btn:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.5),
        0 5px 10px rgba(0, 0, 0, 0.4),
        0 2px 5px rgba(0, 0, 0, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

/* Стили для изображений кнопок мобильных */
.mobile-btn-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 150px;
    max-height: 40px;
}

/* CA текст под контентом для мобильных */
.mobile-ca-text-row {
    width: 100%;
    margin-top: 3vh;
    display: flex;
    justify-content: center;
}

.mobile-ca-text {
    font-size: clamp(0.8rem, 2.5vw, 1.1rem);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1vw 2vw;
    border-radius: 0.3vw;
    user-select: none;
}

.mobile-ca-text:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.mobile-ca-address {
    font-family: 'ArchivoBlack', 'Courier New', monospace;
    font-weight: bold;
    color: #ffd700;
}

/* Telegram и Twitter для мобильных */
.mobile-bottom-info-container {
    display: flex;
    flex-direction: column;
    gap: 3vh;
    margin-top: 3vh;
    max-width: 100%;
    align-items: center;
}

/* Кнопки слева в колонку для мобильных */
.mobile-bottom-buttons {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    align-items: center;
}

.mobile-bottom-btn {
    padding: 1vw;
    border-radius: 0.5vw;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    min-width: 200px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 8px rgba(255, 255, 255, 0.1),
        0 2px 4px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.mobile-bottom-link {
    text-decoration: none;
    color: white;
}

.mobile-bottom-btn:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.5),
        0 5px 10px rgba(0, 0, 0, 0.4),
        0 2px 5px rgba(0, 0, 0, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

/* Текст справа для мобильных */
.mobile-bottom-text {
    color: white;
    text-align: center;
}

.mobile-bottom-text h4 {
    font-size: clamp(1.1rem, 3.5vw, 1.8rem);
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-bottom-text p {
    font-size: clamp(0.8rem, 2.2vw, 1.1rem);
    line-height: 1.6;
    opacity: 0.9;
}

/* Bottom Section with Inverted Gradient */
.bottom-section {
    min-height: 100vh;
    width: 100vw;
    background: linear-gradient(180deg, #1a1a1a 0%, #000 40%, #000 60%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bottom-content {
    text-align: center;
    z-index: 10;
    transform: translateY(-25vh);
}

.name-image {
    max-width: 95%;
    height: auto;
    max-height: 400px;
    margin-bottom: 8vh;
}

/* Хаотично разбросанные изображения */
.floating-image {
    position: absolute;
    max-width: 220px;
    height: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.floating-image:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Шахматная доска - 4 колонки x 2 ряда с контрастными размерами */
.chel1 {
    top: 35%;
    left: 10%;
    max-width: 120px;
    animation: float1 6s ease-in-out infinite;
}

.chel2 {
    bottom: 10%;
    left: 10%;
    max-width: 280px;
    animation: float2 8s ease-in-out infinite;
}

.chel3 {
    top: 35%;
    left: 35%;
    max-width: 300px;
    animation: float3 7s ease-in-out infinite;
}

.chel4 {
    bottom: 10%;
    left: 35%;
    max-width: 100px;
    animation: float4 9s ease-in-out infinite;
}

.chel5 {
    top: 35%;
    right: 35%;
    max-width: 90px;
    animation: float5 5s ease-in-out infinite;
}

.chel6 {
    bottom: 10%;
    right: 35%;
    max-width: 260px;
    animation: float6 10s ease-in-out infinite;
}

.chel7 {
    top: 35%;
    right: 10%;
    max-width: 320px;
    animation: float7 7.5s ease-in-out infinite;
}

.chel8 {
    bottom: 10%;
    right: 10%;
    max-width: 110px;
    animation: float8 8.5s ease-in-out infinite;
}

/* Анимации плавания */
@keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-25px); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-22px); }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
}

@keyframes float7 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-19px); }
}

@keyframes float8 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-21px); }
}

/* Name image слева от персонажа */
.name-image-left {
    position: absolute;
    top: 20%;
    left: 31%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.name-left {
    max-width: 1200px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

/* Контейнер информации под name.png */
.info-container {
    display: flex;
    gap: 4vw;
    margin-top: 3vh;
    max-width: 90%;
}

/* Текст слева */
.info-text {
    flex: 1;
    color: white;
    padding-right: 2vw;
}

.info-text h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-text p {
    font-size: clamp(0.9rem, 1.8vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Кнопки справа в колонку */
.info-buttons {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    min-width: 200px;
}

.info-btn {
    padding: 0.5vw;
    border-radius: 0.5vw;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 120px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 8px rgba(255, 255, 255, 0.1),
        0 2px 4px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.info-link {
    text-decoration: none;
    color: white;
}

.info-btn:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.5),
        0 5px 10px rgba(0, 0, 0, 0.4),
        0 2px 5px rgba(0, 0, 0, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.info-btn:active {
    transform: translateY(-1px);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* Стили для изображений кнопок */
.btn-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 120px;
    max-height: 40px;
}

/* Цвета кнопок */
.info-btn.dexscreener {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #00d4ff;
}

.info-btn.dextools {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ff6b35;
}

.info-btn.jupiter {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #00ff88;
}

/* CA текст под контентом */
.ca-text-row {
    width: 100%;
    margin-top: 2vh;
    display: flex;
    justify-content: center;
}

.ca-text {
    font-size: clamp(0.9rem, 1.6vw, 1.3rem);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5vw 1vw;
    border-radius: 0.3vw;
    user-select: none;
}

.ca-text:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.ca-address {
    font-family: 'ArchivoBlack', 'Courier New', monospace;
    font-weight: bold;
    color: #ffd700;
}

/* Telegram и Twitter слева, текст справа */
.bottom-info-container {
    display: flex;
    gap: 4vw;
    margin-top: 2vh;
    max-width: 90%;
    align-items: flex-start;
}

/* Кнопки слева в колонку */
.bottom-buttons {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    min-width: 200px;
}

.bottom-btn {
    padding: 0.5vw;
    border-radius: 0.5vw;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    min-width: 120px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 8px rgba(255, 255, 255, 0.1),
        0 2px 4px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.bottom-link {
    text-decoration: none;
    color: white;
}

.bottom-btn:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.5),
        0 5px 10px rgba(0, 0, 0, 0.4),
        0 2px 5px rgba(0, 0, 0, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

/* Текст справа */
.bottom-text {
    flex: 1;
    color: white;
    padding-left: 2vw;
}

.bottom-text h4 {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bottom-text p {
    font-size: clamp(0.9rem, 1.6vw, 1.3rem);
    line-height: 1.6;
    opacity: 0.9;
}

/* Цвета кнопок */
.bottom-btn.telegram {
    color: #0088cc;
}

.bottom-btn.twitter {
    color: #1da1f2;
}

/* Контейнер информации о проекте */
.project-info-container {
    display: flex;
    gap: 4vw;
    margin-top: 3vh;
    max-width: 90%;
}

/* Текст о проекте слева */
.project-text {
    flex: 1;
    color: white;
    padding-right: 2vw;
}

.project-text h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-text p {
    font-size: clamp(0.9rem, 1.8vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Кнопки социальных сетей справа */
.project-social-buttons {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    min-width: 300px;
}

/* Верхний ряд кнопок */
.social-row-top {
    display: flex;
    gap: 1vw;
    justify-content: center;
}

/* CA по центру */
.ca-center {
    display: flex;
    justify-content: center;
}

/* Нижний ряд кнопок */
.social-row-bottom {
    display: flex;
    gap: 2vw;
    justify-content: center;
}

/* Стили кнопок социальных сетей */
.project-social-btn {
    padding: 0.8vw 1.5vw;
    border-radius: 0.5vw;
    text-align: center;
    font-size: clamp(0.8rem, 1.4vw, 1.2rem);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 80px;
}

.project-social-link {
    text-decoration: none;
    color: white;
}

.project-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Цвета кнопок */
.project-social-btn.dexscreener {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #00d4ff;
}

.project-social-btn.dextools {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ff6b35;
}

.project-social-btn.jupiter {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #00ff88;
}

.project-social-btn.ca {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ffd700;
    font-weight: 700;
    padding: 1vw 2vw;
    font-size: clamp(0.9rem, 1.6vw, 1.3rem);
}

.project-social-btn.telegram {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #0088cc;
}

.project-social-btn.twitter {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #1da1f2;
}

/* Разделитель между секциями */
.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 4vh 0;
}

/* Нижняя информационная секция */
.bottom-info-section {
    display: flex;
    gap: 4vw;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
}

/* Секция с иконкой слева */
.bottom-icon-section {
    flex: 0 0 auto;
}

.bottom-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-image {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
}

.icon-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

/* Секция с текстом справа */
.bottom-text-section {
    flex: 1;
}

.bottom-text {
    color: white;
}

.bottom-text h4 {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bottom-text p {
    font-size: clamp(0.9rem, 1.6vw, 1.3rem);
    line-height: 1.6;
    opacity: 0.9;
}

.character-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 0;
}

.character {
    position: relative;
    width: min(30vw, 30vh);
    height: min(30vw, 30vh);
    transition: transform 0.3s ease;
}

.character:hover {
    transform: scale(1.05);
}

.character-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.eyes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.eye {
    position: absolute;
    width: 18px;
    height: 18px;
    background: black;
    border-radius: 50%;
    transition: all 0.1s ease;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
}

#left-eye {
    top: 37.5%;
    left: 42.5%;
    transform: translate(-50%, -50%);
}

#right-eye {
    top: 37.5%;
    right: 42.5%;
    transform: translate(50%, -50%);
}

/* Burger Menu - скрыт по умолчанию */
.burger-menu {
    display: none;
}

/* Chat Cloud for AI responses */
.chat-cloud {
    position: absolute;
    top: -8vh;
    right: -15vw;
    width: 25vw;
    height: 15vh;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    z-index: 1000;
    cursor: pointer;
    transform-origin: center;
}

.chat-cloud:hover {
    transform: scale(1.05);
}

.chat-cloud.clicked {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.cloud-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(10.35);
}

/* Input container below character */
.input-container {
    position: absolute;
    top: 107%;
    left: 54%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.2vw;
    width: 18vw;
    max-width: 38vw;
    z-index: 1000;
}

#chatInput {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    border: 0.2vw solid #333;
    border-radius: 2.5vw;
    padding: 1.2vw 2vw;
    color: #333;
    font-size: 1.4vw;
    outline: none;
    transition: all 0.3s ease;
}

#chatInput::placeholder {
    color: #666;
}

#chatInput:focus {
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 1vw rgba(0, 123, 255, 0.3);
}

#sendMessage {
    background: #007bff;
    border: none;
    border-radius: 2.5vw;
    padding: 1.2vw 2.4vw;
    color: white;
    font-size: 1.4vw;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#sendMessage:hover {
    background: #0056b3;
    transform: scale(1.05);
}

#sendMessage:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.chat-history {
    position: absolute;
    top: 12%;
    left: 20%;
    right: 8%;
    bottom: 20%;
    width: 59%;
    height: 47%;
    overflow-y: auto;
    overflow-x: hidden;
    transform: skewX(-10deg);
    padding: 0;
}

.chat-history::-webkit-scrollbar {
    width: 3px;
}

.chat-history::-webkit-scrollbar-track {
    background: transparent;
}

.chat-history::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.chat-history::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.ai-response {
    color: white;
    font-size: 0.9vw;
    line-height: 1.2;
    font-weight: 500;
    text-align: justify;
    padding: 0.5vw 0;
    word-wrap: break-word;
    margin-bottom: 0.5vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-response {
    color: #ccc;
    font-size: 0.8em;
    line-height: 1.1;
    font-weight: 400;
    text-align: left;
    padding: 0.3vw 0;
    word-wrap: break-word;
    margin-bottom: 0.3vw;
    opacity: 0.8;
}

.ai-response:last-child {
    border-bottom: none;
}

/* Chat Modal */
.chat-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chat-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 80vw;
    max-width: 800px;
    height: 70vh;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.chat-modal.show .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header h3 {
    color: white;
    margin: 0;
    font-size: 24px;
}

.modal-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.clear-history {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.clear-history:hover {
    background: rgba(255, 0, 0, 0.4);
    border-color: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-messages::-webkit-scrollbar {
    width: 8px;
}

.modal-messages::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.modal-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.modal-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.modal-message {
    max-width: 70%;
    word-wrap: break-word;
}

.modal-user-message {
    align-self: flex-end;
}

.modal-ai-message {
    align-self: flex-start;
}

.modal-message-content {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}

.modal-user-message .modal-message-content {
    background: #007bff;
    color: white;
    border-bottom-right-radius: 4px;
}

.modal-ai-message .modal-message-content {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-bottom-left-radius: 4px;
}

.modal-input-container {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 10px;
}

#modalChatInput {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 12px 20px;
    color: white;
    font-size: 14px;
    outline: none;
}

#modalChatInput::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#modalChatInput:focus {
    border-color: #007bff;
    background: rgba(255, 255, 255, 0.15);
}

#modalSendMessage {
    background: #007bff;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

#modalSendMessage:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.chat-messages {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message {
    max-width: 85%;
    word-wrap: break-word;
}

.ai-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.3;
}

.ai-message .message-content {
    background: #f0f0f0;
    color: #333;
    border-bottom-left-radius: 4px;
}

.user-message .message-content {
    background: #007bff;
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-input-container {
    padding: 10px 0 0 0;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 8px;
}

#chatInput {
    flex: 1;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 8px 12px;
    color: #333;
    font-size: 13px;
    outline: none;
}

#chatInput::placeholder {
    color: #999;
}

#chatInput:focus {
    border-color: #007bff;
    background: white;
}

#sendMessage {
    background: #007bff;
    border: none;
    border-radius: 15px;
    padding: 8px 16px;
    color: white;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

#sendMessage:hover {
    background: #0056b3;
    transform: scale(1.05);
}

#sendMessage:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

#left-eye, #right-eye {
    transition: all 0.3s ease;
}

.social-links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    display: none;
}

.social-link {
    text-decoration: none;
    color: inherit;
    position: absolute;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1) !important;
    z-index: 10;
}

.link-block {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 0.5vw;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    min-width: 6vw;
    max-width: 8vw;
    min-height: 40px;
    transform-origin: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 8px rgba(255, 255, 255, 0.1),
        0 2px 4px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.link-block:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.5),
        0 8px 16px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

/* Цветовые схемы для разных блоков */
.telegram {
    border-color: rgba(0, 136, 204, 0.5);
}

.telegram:hover {
    background: rgba(0, 136, 204, 0.2);
    border-color: rgba(0, 136, 204, 0.7);
}

.twitter {
    border-color: rgba(29, 161, 242, 0.5);
}

.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: rgba(29, 161, 242, 0.7);
}

.dexscreener {
    border-color: rgba(255, 193, 7, 0.5);
}

.dexscreener:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.7);
}

.jupiter {
    border-color: rgba(138, 43, 226, 0.5);
}

.jupiter:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.7);
}

.dextools {
    border-color: rgba(255, 87, 34, 0.5);
}

.dextools:hover {
    background: rgba(255, 87, 34, 0.2);
    border-color: rgba(255, 87, 34, 0.7);
}

.ca {
    border-color: rgba(76, 175, 80, 0.5);
}

.ca:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.7);
}

/* Стили для социальных изображений кнопок */
.btn-image-social {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100px;
    max-height: 35px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .character {
        width: min(35vw, 35vh);
        height: min(35vw, 35vh);
    }
    
    .link-block {
        min-width: 8vw;
        max-width: 10vw;
        padding: 1.5vw;
    }
}

@media (max-width: 480px) {
    .character {
        width: min(40vw, 40vh);
        height: min(40vw, 40vh);
    }
    
    .link-block {
        min-width: 10vw;
        max-width: 12vw;
        padding: 2vw;
    }
    
    .chat-cloud {
        width: 35vw;
        height: 20vh;
        top: -30vh;
        right: -25vw;
    }
    
    .input-container {
        width: 40vw;
        top: 100%;
        gap: 3vw;
    }
    
    #chatInput {
        padding: 1.5vw 2vw;
        font-size: 1.8vw;
        border-radius: 3vw;
    }
    
    #sendMessage {
        padding: 1.5vw 2.5vw;
        font-size: 1.8vw;
        border-radius: 3vw;
    }
    
    .ai-response {
        font-size: 1.5vw;
        top: 10%;
        bottom: 25%;
    }
}
@media (min-width: 1680px){
    .name-left {
        max-width: 1200px;
        height: auto;
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
        margin-left: -8%;
        margin-top: 10%;
    }
    .info-container {
        display: flex
;
        gap: 3vw;
        margin-top: 4vh;
        max-width: 78%;
        margin-left: -10%;
    }
    .info-buttons {
        flex: 0 0 auto;
        display: flex
    ;
        flex-direction: column;
        gap: 1.5vw;
        min-width: 200px;
    }
    .info-btn.dexscreener {
        background: white;
        color: #06ff00;
    }
    .info-btn.dextools {
        background: white;
        color: #06ff00;
    }
    .info-btn.jupiter {
        background: white;
        color: #06ff00;
    }
    .ca-text-row {
        width: 100%;
        margin-top: 2vh;
        display: flex
;
        justify-content: normal;
        margin-left: 13%;
    }
    .bottom-info-container {
        display: flex
    ;
        gap: 9vw;
        margin-top: 4vh;
        max-width: 83%;
        align-items: flex-start;
        margin-left: -10%;
    }
    .bottom-buttons {
        flex: 0 0 auto;
        display: flex
    ;
        flex-direction: column;
        gap: 1.5vw;
        min-width: 200px;
    }
    .bottom-btn.telegram {
        color: #06ff00;
        background: white;
    }
    .bottom-btn.twitter {
        color: #06ff00;
        background: white;
    }

    .name-image-left {
        position: absolute;
        top: 42%;
        left: 42%;
        transform: translate(-50%, -50%);
        z-index: 5;
    }
.character-container {
        position: absolute;
        top: 59%;
        left: 78%;
        transform: translate(-50%, -50%);
        margin-bottom: 0;
    }
    .character {
        position: relative;
        width: min(50vw, 30vh);
        height: min(44vw, 57vh);
    }
    .chat-cloud {
        position: absolute;
        top: -28vh;
        right: -15vw;
        width: 43vw;
        height: 48vh;
        opacity: 1;
        visibility: visible;
        transition: all 0.3s 
    ease;
        z-index: 1000;
        cursor: pointer;
        transform-origin: center;
    }
    .cloud-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: absolute;
        top: 0;
        left: 0;
        filter: brightness(10.35);
        display: none;
    }
    .chat-history {
        position: absolute;
        top: 12%;
        left: 20%;
        right: 8%;
        bottom: 20%;
        width: 59%;
        height: 47%;
        overflow-y: auto;
        overflow-x: hidden;
        transform: skewX(-10deg);
        padding: 0;
    }
    .input-container {
        position: absolute;
        top: 99%;
        left: 54%;
        transform: translateX(-50%);
        display: flex
    ;
        gap: 0.2vw;
        width: 22vw;
        max-width: 38vw;
        z-index: 1000;
    }
    #chatInput {
        flex: 1;
        background: #f8f9fa;
        border: 1px solid #ddd;
        border-radius: 15px;
        padding: 8px 12px;
        color: #333;
        font-size: 24px;
        outline: none;
    }
    #sendMessage {
        background: #007bff;
        border: none;
        border-radius: 15px;
        padding: 8px 16px;
        color: white;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.2s 
    ease;
    }
    .ca-text-row {
        width: 100%;
        margin-top: 3vh;
        display: flex
;
        justify-content: normal;
        margin-left: 5%;
    }
    .btn-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-width: 116px;
        max-height: 33px;
    }
    .bottom-info-container {
        display: flex
;
        gap: 3vw;
        margin-top: 6vh;
        max-width: 79%;
        align-items: flex-start;
        margin-left: -10%;
    }
}
@media (min-width: 1000px) and (max-width: 1679px){
    .info-btn.dexscreener {
        background: white;
        color: #06ff00;
    }
    .info-btn.dextools {
        background: white;
        color: #06ff00;
    }
    .info-btn.jupiter {
        background: white;
        color: #06ff00;
    }
    .bottom-btn.telegram {
        color: #06ff00;
        background: white;
    }
    .bottom-btn.twitter {
        color: #06ff00;
        background: white;
    }
    .ca-text-row {
        width: 100%;
        margin-top: 2vh;
        display: flex
    ;
        justify-content: normal;
        margin-left: 13%;
    }
    .info-text h3 {
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: bold;
        margin-bottom: 1.5rem;
        background: linear-gradient(45deg, #fff, #ccc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .info-text p {
        font-size: clamp(0.9rem, 1.8vw, 0.4rem);
        line-height: 1.6;
        margin-bottom: 1rem;
        opacity: 0.9;
    }
    .bottom-text p {
        font-size: clamp(0.9rem, 1.6vw, 0.4rem);
        line-height: 1.6;
        opacity: 0.9;
    }
    .bottom-text h4 {
        font-size: clamp(1.3rem, 2.5vw, 2vw);
        font-weight: bold;
        margin-bottom: 1rem;
        background: linear-gradient(45deg, #fff, #ccc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .name-image-left {
        position: absolute;
        top: 46%;
        left: 36%;
        transform: translate(-50%, -50%);
        z-index: 5;
    }
    .info-buttons {
        flex: 0 0 auto;
        display: flex
;
        flex-direction: column;
        gap: 1.5vw;
        min-width: 162px;
        margin-top: 1%;
        margin-left: -6%;
    }
    .bottom-buttons {
        flex: 0 0 auto;
        display: flex
    ;
        flex-direction: column;
        gap: 1.5vw;
        min-width: 162px;
    }
    
    .bottom-text {
        color: white;
        max-width: 619px;
        margin-top: 2%;
    }
    
    .name-left {
        max-width: 800px;
        height: auto;
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    }
    
    .character-container {
        position: absolute;
        top: 58%;
        left: 80%;
        transform: translate(-50%, -50%);
        margin-bottom: 0;
    }
    .character {
        position: relative;
        width: min(50vw, 34vh);
        height: min(44vw, 57vh);
    }

    .chat-cloud {
        position: absolute;
        top: -28vh;
        right: -17vw;
        width: 49vw;
        height: 48vh;
        opacity: 1;
        visibility: visible;
        transition: all 0.3s 
ease;
        z-index: 1000;
        cursor: pointer;
        transform-origin: center;
    }

    .cloud-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: absolute;
        top: 0;
        left: 0;
        filter: brightness(10.35);
        display: none;
    }
    .chat-history {
        position: absolute;
        top: 12%;
        left: 20%;
        right: 8%;
        bottom: 20%;
        width: 59%;
        height: 47%;
        overflow-y: auto;
        overflow-x: hidden;
        transform: skewX(-10deg);
        padding: 0;
    }
    .input-container {
        position: absolute;
        top: 97%;
        left: 50%;
        transform: translateX(-50%);
        display: flex
;
        gap: 0.2vw;
        width: 31vw;
        max-width: 38vw;
        z-index: 1000;
        max-height: 6vh;
    }

    #chatInput {
        flex: 1;
        background: #f8f9fa;
        border: 1px solid #ddd;
        border-radius: 15px;
        padding: 8px 12px;
        color: #333;
        font-size: 24px;
        outline: none;
    }
    #sendMessage {
        background: #007bff;
        border: none;
        border-radius: 15px;
        padding: 8px 16px;
        color: white;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.2s 
    ease;
    }
    .info-container {
        display: flex
;
        gap: 4vw;
        margin-top: -7vh;
        max-width: 82%;
    }
    .bottom-btn {
        padding: 0.09vw;
        border-radius: 0.5vw;
        text-align: center;
        transition: all 0.3s 
    ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
        min-width: 120px;
        min-height: 40px;
        display: flex
    ;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1), 0 2px 4px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(0);
    }
    .bottom-text {
        color: white;
        max-width: 619px;
    }
    .bottom-buttons {
        flex: 0 0 auto;
        display: flex
;
        flex-direction: column;
        gap: 1.5vw;
        min-width: 162px;
        margin-top: 4%;
    }
    .btn-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-width: 120px;
        max-height: 31px;
    }
    
}
@media (max-width: 600px) {
    /* Показываем мобильную секцию */
    .mobile-section {
        display: block;
    }
    
    /* Скрываем только name-image-left на мобильных */
    .name-image-left {
        display: none;
    }
    .mobile-info-container {
        display: flex
    ;
        flex-direction: column;
        gap: 3vh;
        margin-top: -5vh;
        max-width: 100%;
    }
    .mobile-info-text h3 {
        font-size: clamp(2rem, 4vw, 2rem);
        font-weight: bold;
        margin-bottom: 1rem;
        background: linear-gradient(45deg, #fff, #ccc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .mobile-info-text p {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        line-height: 1.6;
        margin-bottom: 1rem;
        opacity: 0.9;
    }
    .mobile-bottom-info-container {
        display: flex
    ;
        flex-direction: column;
        gap: 3vh;
        margin-top: 3vh;
        max-width: 100%;
        align-items: center;
    }
    .mobile-bottom-text h4 {
        font-size: clamp(2rem, 3.5vw, 1.8rem);
        font-weight: bold;
        margin-bottom: 1rem;
        background: linear-gradient(45deg, #fff, #ccc);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .mobile-bottom-text p {
        font-size: clamp(1rem, 2.2vw, 1.1rem);
        line-height: 1.6;
        opacity: 0.9;
    }
    .mobile-name-left {
        max-width: 136%;
        height: auto;
        max-height: 241px;
        /* margin-bottom: 23vh; */
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
        margin-left: -8%;
        margin-top: -5%;
    }
    .mobile-name-image-left {
        position: relative;
        width: 100%;
        max-width: 90%;
        text-align: center;
        z-index: 5;
    }

    
    /* Адаптивность для информации под name.png */
    .info-container {
        flex-direction: column;
        gap: 2vh;
        margin-top: 2vh;
        max-width: 95%;
    }
    
    .info-text {
        padding-right: 0;
        text-align: center;
    }
    
    .info-text h3 {
        font-size: clamp(1.2rem, 4vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .info-text p {
        font-size: clamp(0.8rem, 2.5vw, 1.2rem);
        margin-bottom: 0.8rem;
    }
    
    .info-buttons {
        min-width: auto;
        gap: 2vh;
        align-items: center;
    }
    
    .info-btn {
        padding: 1vw;
        min-width: 100px;
        min-height: 35px;
        box-shadow: 
            0 3px 6px rgba(255, 255, 255, 0.08),
            0 1px 3px rgba(255, 255, 255, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    }
    
    .btn-image {
        max-width: 100px;
        max-height: 35px;
    }
    
    /* Адаптивность для CA текста */
    .ca-text-row {
        margin-top: 3vh;
    }
    
    .ca-text {
        padding: 1vw 2vw;
        font-size: clamp(0.8rem, 2.5vw, 1.1rem);
    }
    
    /* Адаптивность для нижней информационной секции */
    .bottom-info-container {
        flex-direction: column;
        gap: 2vh;
        margin-top: 3vh;
        max-width: 95%;
    }
    
    .bottom-text {
        padding-left: 0;
        text-align: center;
    }
    
    .bottom-text h4 {
        font-size: clamp(1.1rem, 3.5vw, 1.8rem);
        margin-bottom: 0.8rem;
    }
    
    .bottom-text p {
        font-size: clamp(0.8rem, 2.2vw, 1.1rem);
    }
    
    .bottom-buttons {
        min-width: auto;
        gap: 2vh;
        align-items: center;
    }
    
    .bottom-btn {
        padding: 1vw;
        min-width: 100px;
        min-height: 35px;
        box-shadow: 
            0 3px 6px rgba(0, 0, 0, 0.2),
            0 1px 3px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    
    .btn-image-mobile {
        max-width: 80px;
        max-height: 30px;
    }
    
    /* Адаптивность для информации о проекте */
    .project-info-container {
        flex-direction: column;
        gap: 2vh;
        margin-top: 2vh;
        max-width: 95%;
    }
    
    .project-text {
        padding-right: 0;
        text-align: center;
    }
    
    .project-text h3 {
        font-size: clamp(1.2rem, 4vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .project-text p {
        font-size: clamp(0.8rem, 2.5vw, 1.2rem);
        margin-bottom: 0.8rem;
    }
    
    .project-social-buttons {
        min-width: auto;
        gap: 2vh;
    }
    
    .social-row-top {
        gap: 1.5vw;
    }
    
    .social-row-bottom {
        gap: 3vw;
    }
    
    .project-social-btn {
        padding: 2vw 3vw;
        font-size: clamp(0.7rem, 2.5vw, 1rem);
        min-width: 60px;
    }
    
    .project-social-btn.ca {
        padding: 2.5vw 4vw;
        font-size: clamp(0.8rem, 3vw, 1.1rem);
    }
    
    /* Адаптивность для разделителя и нижней секции */
    .section-divider {
        margin: 3vh 0;
    }
    
    .bottom-info-section {
        flex-direction: column;
        gap: 3vh;
        max-width: 95%;
    }
    
    .icon-image {
        max-width: 100px;
    }
    
    .bottom-text {
        text-align: center;
    }
    
    .bottom-text h4 {
        font-size: clamp(1.1rem, 3.5vw, 1.8rem);
        margin-bottom: 0.8rem;
    }
    
    .bottom-text p {
        font-size: clamp(0.8rem, 2.2vw, 1.1rem);
    }
    
    /* Скрываем десктопные социальные ссылки на мобильных */
    .social-links {
        display: none;
    }
    
    /* Показываем бургер-меню на мобильных */
    .burger-menu {
        display: block;
    }
    
    /* Burger Menu Styles */
    .burger-menu {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 2000;
    }
    
    .burger-icon {
        width: 30px;
        height: 24px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: all 0.3s ease;
    }
    
    .burger-icon span {
        width: 100%;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .burger-icon.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-icon.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-icon.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .burger-content {
        position: absolute;
        top: 40px;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        border-radius: 10px;
        padding: 20px;
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .burger-content.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .social-links-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    /* Bottom Section Mobile - Шахматная доска с контрастными размерами */
    .bottom-content {
        transform: translateY(-20vh);
    }
    
    .name-image {
        max-width: 98%;
        max-height: 250px;
        margin-bottom: 6vh;
    }
    
    .floating-image {
        opacity: 0.6;
    }
    
    .chel1 {
        top: 40%;
        left: 8%;
        max-width: 70px;
    }
    
    .chel2 {
        bottom: 15%;
        left: 8%;
        max-width: 180px;
    }
    
    .chel3 {
        top: 40%;
        left: 32%;
        max-width: 200px;
    }
    
    .chel4 {
        bottom: 15%;
        left: 32%;
        max-width: 60px;
    }
    
    .chel5 {
        top: 40%;
        right: 32%;
        max-width: 50px;
    }
    
    .chel6 {
        bottom: 15%;
        right: 32%;
        max-width: 160px;
    }
    
    .chel7 {
        top: 40%;
        right: 8%;
        max-width: 220px;
    }
    
    .chel8 {
        bottom: 15%;
        right: 8%;
        max-width: 75px;
    }
    
.link-block-mobile {
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 3px 6px rgba(255, 255, 255, 0.08),
        0 1px 3px rgba(255, 255, 255, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}
    
    .social-link-mobile {
        text-decoration: none;
    }
    
.link-block-mobile:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 3px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}
    
    .link-block-mobile.telegram {
        background: white;
    }
    
    .link-block-mobile.twitter {
        background: white;
    }
    
    .link-block-mobile.dexscreener {
        background: white;
    }
    
    .link-block-mobile.jupiter {
        background: white;
    }
    
    .link-block-mobile.dextools {
        background: white;
    }
    
.link-block-mobile.ca {
    background: white;
    color: black;
}

/* Стили для мобильных изображений кнопок */
.btn-image-mobile {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 80px;
    max-height: 30px;
}
    .input-container {
        width: 35vw;
        gap: 1vw;
    }
    
    #chatInput {
        padding: 2vw 3vw;
        font-size: 4.2vw;
        border-radius: 4vw;
    }
    
    #sendMessage {
        padding: 2vw 4vw;
        font-size: 3.2vw;
        border-radius: 4vw;
    }
    .input-container {
        width: 36vw;
        gap: 1vw;
        top: 128%;
        left: 19%;
    }
    .character {
        width: 60vw;
        height: 73vw;
        /* top: -9%; */
    }
    .character-container {
        position: absolute;
        top: 59%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-bottom: 0;
    }
    .chat-history {
        position: absolute;
        top: -2%;
        left: 0%;
        right: 32%;
        bottom: 47%;
        width: 96%;
        height: 65%;
        overflow-y: auto;
        overflow-x: hidden;
        transform: skewX(-3deg);
        padding: 0;
    }
    .ai-response {
        font-size: 3.5vw;
    }
    .chat-cloud {
        width: 87vw;
        height: 41vh;
        top: -30vh;
        right: -14vw;
    }
    .cloud-image {
        display: none;
    }
}