/* =========================
   БАЗОВІ СТИЛІ СТОРІНКИ
========================= */
* {
    box-sizing: border-box;
    font-weight: bold;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0px;
    background: linear-gradient(180deg, #050F28, #020617);
    color: #FFFFFF;
    font-family: Arial, sans-serif;
}

/* =========================
   ОСНОВНИЙ КОНТЕНТ
========================= */
#content {
    flex: 1 0 auto;
    padding: 10px;
}

/* =========================
   ІНФО ПРО ЮШІ
========================= */
#chat-girl-info {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-top: 20px;
}

#chat-girl-avatar {
    width: 130px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #6C63FF;
}
#chat-girl-avatar:hover {
    box-shadow: 0 0 15px rgba(108, 99, 255, 0.6);
}

h2 {
    font-weight: bold;
    font-size: 26px;
    font-family: 'Pacifico', cursive;
    margin: 0;
    text-shadow: 0 0 10px rgba(108, 99, 255, 0.5);
}

/* =========================
   ПОВІДОМЛЕННЯ
========================= */
#chat-girl-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.yushi-text,
.your-text {
    max-width: 90%;
    padding: 17px 16px;
    border-radius: 18px;
    font-weight: bold;
    animation: fadeIn 0.3s ease;
}

.yushi-text {
    align-self: flex-start;
    background: linear-gradient(135deg, #121B2E, #1B2A4A);
    box-shadow: 0 0 12px rgba(108, 99, 255, 0.15);
}

.your-text {
    align-self: flex-end;
    background: linear-gradient(135deg, #6C63FF, #8B85FF);
    color: #0A0F1E;
}

/* =========================
   ПОЛЕ ВВЕДЕННЯ
========================= */
#chat-girl-in {
    display: flex;
    gap: 10px;
    padding-top: 20px;
}

input {
    flex: 1;
    background: #0B1120;
    border: 2px solid #6C63FF;
    color: #FFFFFF;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: bold;
    outline: none;
    transition: 0.2s;
}

input:focus {
    box-shadow: 0 0 12px rgba(108, 99, 255, 0.7);
}

input::placeholder {
    color: rgba(250, 250, 256, 0.95);
}

/* =========================
   КНОПКА
========================= */
button {
    background: linear-gradient(135deg, #6C63FF, #8B85FF);
    color: #FFFFFF;
    border: none;
    border-radius: 14px;
    padding: 12px 22px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
    font-size: 15px;
}

button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.8);
}

button:active {
    transform: scale(0.95);
}

/* =========================
   ФУТЕР
========================= */
footer {
    margin-top: auto;
    text-align: center;
    font-size: 10px;
    color: #888;
    padding: 10px;
    background-color: #0B111F;
}
footer:hover {
    font-size:12px;
    text-shadow: 2px 2px 2px #fff;
    color:white;
}
/* =========================
   АНІМАЦІЇ
========================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*===================
   UUID KEY
===================*/
.uuid-key {
    width: 50px;
    height: 5px;
    opacity: 0;
}