@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #2c1a1f, #1f1625);
    min-height: 100vh;
    transition: background 0.5s ease;
}

/* ========== КНОПКА ТЕМЫ ========== */
.theme-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(176, 48, 95, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(176, 48, 95, 0.3);
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    color: #f5e6e6;
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}

.theme-btn:hover {
    transform: scale(1.1) rotate(180deg);
    background: rgba(139, 30, 63, 0.4);
    box-shadow: 0 0 20px rgba(176, 48, 95, 0.5);
}

/* ========== КНОПКА "ТОЖЕ ХОЧЕШЬ БИО?" ========== */
.bio-request-btn {
    background: linear-gradient(135deg, #b0305f, #6d1f3b);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(176, 48, 95, 0.4);
    transition: all 0.3s;
    border: 1px solid rgba(255, 215, 215, 0.2);
    animation: pulse 2s infinite;
}

.bio-request-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(176, 48, 95, 0.6);
    animation: none;
}

.bio-request-btn i {
    font-size: 18px;
    animation: bounce 2s infinite;
}

/* ========== КРАСИВОЕ ОКНО ========== */
.bio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.bio-modal-content {
    background: linear-gradient(135deg, #2c1a1f, #1f1625);
    border-radius: 30px;
    width: 90%;
    max-width: 400px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    animation: modalAppear 0.5s;
    border: 1px solid rgba(176, 48, 95, 0.3);
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bio-modal-header {
    background: linear-gradient(135deg, #b0305f, #6d1f3b);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bio-modal-header i {
    font-size: 24px;
}

.bio-modal-header h3 {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.bio-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.bio-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.bio-modal-body {
    padding: 30px;
    text-align: center;
}

.telegram-icon {
    font-size: 70px;
    color: #b0305f;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(176, 48, 95, 0.5));
    animation: float 3s ease-in-out infinite;
}

.bio-modal-body p {
    font-size: 18px;
    color: #f0e0e0;
    line-height: 1.6;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.bio-modal-body .telegram-highlight {
    color: #d98fa8;
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    margin-top: 5px;
    text-shadow: 0 0 10px rgba(176, 48, 95, 0.5);
}

.bio-modal-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(176, 48, 95, 0.3);
}

.bio-modal-btn {
    background: linear-gradient(135deg, #b0305f, #6d1f3b);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(176, 48, 95, 0.4);
    letter-spacing: 0.5px;
}

.bio-modal-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(176, 48, 95, 0.6);
}

/* ========== ТРИ КОЛОНКИ ========== */
.container.three-columns {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

.column {
    min-width: 0;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== DISCORD ПРОФИЛЬ ========== */
.left-discord .discord-profile {
    background: #2c1a1f;
    border-radius: 16px;
    overflow: hidden;
    color: #f0e0e0;
    height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(176, 48, 95, 0.2);
    transition: all 0.3s;
    animation: slideInLeft 0.8s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.left-discord .discord-profile:hover {
    box-shadow: 0 30px 50px rgba(176, 48, 95, 0.3);
    transform: translateY(-5px);
}

.discord-banner {
    position: relative;
    padding: 60px 20px 20px;
}

.banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(90deg, #b0305f, #6d1f3b, #42213d);
    animation: gradientShift 8s infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(15deg); }
}

.discord-avatar-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.discord-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid #2c1a1f;
    object-fit: cover;
    transition: all 0.3s;
}

.discord-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(176, 48, 95, 0.5);
}

.discord-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 4px solid #2c1a1f;
    animation: pulse 2s infinite;
}

.discord-status.online { background: #b0305f; }
.discord-status.idle { background: #b58b8b; }
.discord-status.dnd { background: #8b1e3f; }

.discord-name-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.discord-name {
    font-size: 22px;
    font-weight: 700;
    color: #ffe6e6;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.discord-tag {
    font-size: 16px;
    color: #d98fa8;
}

.discord-badges {
    display: flex;
    gap: 5px;
    margin: 10px 0;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(176, 48, 95, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #d98fa8;
    cursor: help;
    transition: all 0.3s;
    border: 1px solid rgba(176, 48, 95, 0.3);
}

.badge:hover {
    transform: scale(1.2);
    color: white;
    background: rgba(176, 48, 95, 0.5);
    box-shadow: 0 0 15px rgba(176, 48, 95, 0.5);
}

.discord-custom-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid rgba(176, 48, 95, 0.2);
    animation: fadeIn 0.8s ease-out 0.3s both;
}

.discord-body {
    padding: 20px;
    flex: 1;
}

.discord-section {
    margin-bottom: 20px;
    animation: fadeIn 0.8s ease-out;
    animation-fill-mode: both;
}

.discord-section:nth-child(1) { animation-delay: 0.1s; }
.discord-section:nth-child(2) { animation-delay: 0.2s; }
.discord-section:nth-child(3) { animation-delay: 0.3s; }
.discord-section:nth-child(4) { animation-delay: 0.4s; }

.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d98fa8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.section-content {
    font-size: 14px;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(176, 48, 95, 0.2);
    transition: all 0.3s;
    color: #f0e0e0;
}

.section-content:hover {
    background: rgba(176, 48, 95, 0.15);
    border-color: rgba(176, 48, 95, 0.4);
}

.info-list-discord {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-item-discord {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(176, 48, 95, 0.2);
    transition: all 0.3s;
}

.info-item-discord:hover {
    background: rgba(176, 48, 95, 0.15);
    transform: translateX(5px);
    border-color: rgba(176, 48, 95, 0.4);
}

.info-item-discord i {
    width: 20px;
    color: #b0305f;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 11px;
    color: #d98fa8;
}

.info-value {
    font-size: 14px;
    color: #f0e0e0;
}

.roles-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.role-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(176, 48, 95, 0.2);
    transition: all 0.3s;
}

.role-item:hover {
    background: rgba(176, 48, 95, 0.15);
    transform: translateX(5px);
    border-color: rgba(176, 48, 95, 0.4);
}

.role-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.role-name {
    font-size: 14px;
    color: #f0e0e0;
}

.note-content {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    font-size: 14px;
    border: 1px solid rgba(176, 48, 95, 0.2);
    transition: all 0.3s;
}

.note-content:hover {
    background: rgba(176, 48, 95, 0.15);
    border-color: rgba(176, 48, 95, 0.4);
}

.note-content i {
    color: #b0305f;
    font-size: 14px;
}

/* ========== ЦЕНТРАЛЬНАЯ КОЛОНКА ========== */
.center-profile .profile-card {
    background: rgba(44, 26, 31, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    height: calc(100vh - 40px);
    overflow-y: auto;
    border: 1px solid rgba(176, 48, 95, 0.3);
    transition: all 0.3s;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.center-profile .profile-card:hover {
    box-shadow: 0 30px 50px rgba(176, 48, 95, 0.2);
    transform: translateY(-5px);
    border-color: rgba(176, 48, 95, 0.5);
}

.avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    animation: float 3s ease-in-out infinite;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(176, 48, 95, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
}

.avatar:hover {
    transform: scale(1.1);
    border-color: rgba(176, 48, 95, 0.8);
    box-shadow: 0 0 30px rgba(176, 48, 95, 0.4);
}

.status-badge {
    position: absolute;
    bottom: 10px;
    right: 5px;
    width: 15px;
    height: 15px;
    background: #b0305f;
    border: 3px solid rgba(44, 26, 31, 0.8);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.name {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #ffe6e6;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); }
    50% { text-shadow: 0 2px 20px rgba(176, 48, 95, 0.5); }
}

.bio {
    text-align: center;
    color: #d98fa8;
    font-size: 14px;
    margin-bottom: 25px;
}

.info-list {
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(176, 48, 95, 0.3);
    border-bottom: 1px solid rgba(176, 48, 95, 0.3);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #f0e0e0;
    font-size: 14px;
    transition: all 0.3s;
}

.info-item:hover {
    transform: translateX(5px);
    color: white;
}

.info-item i {
    width: 20px;
    color: #b0305f;
}

.visitor-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(176, 48, 95, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #f0e0e0;
    border: 1px solid rgba(176, 48, 95, 0.3);
    transition: all 0.3s;
}

.visitor-count:hover {
    background: rgba(176, 48, 95, 0.25);
    border-color: rgba(176, 48, 95, 0.5);
}

.visitor-count i {
    color: #b0305f;
}

/* Технологии - маленькие иконки */
.tech-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tech-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(176, 48, 95, 0.15);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #b0305f;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid rgba(176, 48, 95, 0.3);
    animation: float 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.tech-icon:nth-child(1) { --i: 1; }
.tech-icon:nth-child(2) { --i: 2; }
.tech-icon:nth-child(3) { --i: 3; }
.tech-icon:nth-child(4) { --i: 4; }
.tech-icon:nth-child(5) { --i: 5; }

.tech-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(176, 48, 95, 0.3);
    color: white;
    box-shadow: 0 5px 20px rgba(176, 48, 95, 0.4);
}

/* Кнопки соцсетей */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    background: rgba(176, 48, 95, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(176, 48, 95, 0.3);
    animation: float 3s ease-in-out infinite;
}

.social-btn.telegram {
    color: #b0305f;
    animation-delay: 0s;
}

.social-btn.discord {
    color: #d98fa8;
    animation-delay: 0.2s;
}

.social-btn.more {
    color: #b58b8b;
    animation-delay: 0.4s;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(176, 48, 95, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.social-btn:hover::before {
    width: 100px;
    height: 100px;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(176, 48, 95, 0.4);
}

.social-btn.telegram:hover {
    background: #b0305f;
    color: white;
}

.social-btn.discord:hover {
    background: #6d1f3b;
    color: white;
}

.social-btn.more:hover {
    background: #42213d;
    color: white;
}

/* ========== ЧАТ ========== */
.right-chat .chat-container {
    background: rgba(44, 26, 31, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(176, 48, 95, 0.3);
    animation: slideInRight 0.8s ease-out;
}

.chat-header {
    padding: 20px;
    border-bottom: 1px solid rgba(176, 48, 95, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #f0e0e0;
}

.chat-header i {
    color: #b0305f;
    animation: pulse 2s infinite;
}

.messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    background: rgba(176, 48, 95, 0.1);
    backdrop-filter: blur(5px);
    padding: 12px 16px;
    border-radius: 20px 20px 20px 5px;
    max-width: 90%;
    border: 1px solid rgba(176, 48, 95, 0.2);
    transition: all 0.3s;
}

.chat-message:hover {
    background: rgba(176, 48, 95, 0.15);
    transform: translateX(5px);
    border-color: rgba(176, 48, 95, 0.4);
}

.chat-message-sender {
    font-size: 12px;
    font-weight: 600;
    color: #b0305f;
    margin-bottom: 5px;
}

.chat-message-content {
    font-size: 14px;
    color: #f0e0e0;
    word-break: break-word;
}

.chat-message-time {
    font-size: 10px;
    color: #d98fa8;
    margin-top: 5px;
    text-align: right;
}

.chat-input-area {
    padding: 20px;
    border-top: 1px solid rgba(176, 48, 95, 0.3);
}

.chat-name {
    width: 100%;
    padding: 12px 15px;
    background: rgba(176, 48, 95, 0.1);
    border: 1px solid rgba(176, 48, 95, 0.3);
    border-radius: 25px;
    margin-bottom: 10px;
    font-size: 13px;
    outline: none;
    color: #f0e0e0;
    transition: all 0.3s;
}

.chat-name:focus {
    border-color: #b0305f;
    background: rgba(176, 48, 95, 0.15);
    box-shadow: 0 0 15px rgba(176, 48, 95, 0.3);
}

.message-input-wrapper {
    display: flex;
    gap: 10px;
}

.chat-message {
    flex: 1;
    padding: 12px 15px;
    background: rgba(176, 48, 95, 0.1);
    border: 1px solid rgba(176, 48, 95, 0.3);
    border-radius: 25px;
    font-size: 13px;
    resize: none;
    font-family: 'Inter', sans-serif;
    outline: none;
    color: #f0e0e0;
    transition: all 0.3s;
}

.chat-message:focus {
    border-color: #b0305f;
    background: rgba(176, 48, 95, 0.15);
    box-shadow: 0 0 15px rgba(176, 48, 95, 0.3);
}

.chat-send {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b0305f, #6d1f3b);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(176, 48, 95, 0.4);
    animation: pulse 2s infinite;
}

.chat-send:hover {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 25px rgba(176, 48, 95, 0.6);
}

/* ========== АНИМАЦИИ ========== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== СКРОЛЛБАР ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(176, 48, 95, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #b0305f, #6d1f3b);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #6d1f3b, #42213d);
}

/* ========== ТЁМНАЯ ТЕМА (уже тёмная, но для контраста) ========== */
body.dark-theme {
    background: linear-gradient(135deg, #1f0f13, #130c17);
}

/* ========== ПЛАНШЕТЫ (ДО 1200px) ========== */
@media (max-width: 1200px) {
    .container.three-columns {
        grid-template-columns: 1fr;
    }

    .column {
        margin-bottom: 20px;
    }

    .left-discord .discord-profile,
    .center-profile .profile-card,
    .right-chat .chat-container {
        height: 500px;
    }

    .discord-profile,
    .profile-card,
    .chat-container {
        height: auto !important;
        max-height: 600px;
    }
}

/* ========== ТЕЛЕФОНЫ (ДО 768px) ========== */
@media (max-width: 768px) {
    .container.three-columns {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3px;
        padding: 3px;
        padding-bottom: 50px;
        width: 100%;
        margin: 0;
    }

    .column {
        min-width: 0;
        width: 100%;
    }

    .left-discord .discord-profile {
        width: 100%;
        height: auto;
        font-size: 9px;
    }

    .left-discord .discord-banner {
        padding: 30px 5px 5px;
    }

    .left-discord .banner-gradient {
        height: 40px;
    }

    .left-discord .discord-avatar-container {
        width: 35px;
        height: 35px;
        margin-bottom: 5px;
    }

    .left-discord .discord-avatar {
        border-width: 2px;
    }

    .left-discord .discord-status {
        width: 8px;
        height: 8px;
        border-width: 2px;
        bottom: 2px;
        right: 2px;
    }

    .left-discord .discord-name {
        font-size: 10px;
    }

    .left-discord .discord-tag {
        font-size: 8px;
    }

    .left-discord .discord-badges {
        gap: 2px;
        margin: 3px 0;
    }

    .left-discord .badge {
        width: 14px;
        height: 14px;
        font-size: 7px;
    }

    .left-discord .discord-custom-status {
        font-size: 7px;
        padding: 2px 4px;
        gap: 3px;
    }

    .left-discord .discord-body {
        padding: 5px;
    }

    .left-discord .section-header {
        font-size: 7px;
        margin-bottom: 3px;
    }

    .left-discord .section-content {
        font-size: 7px;
        padding: 4px;
    }

    .left-discord .info-item-discord {
        font-size: 7px;
        gap: 3px;
    }

    .left-discord .info-item-discord i {
        width: 12px;
        font-size: 7px;
    }

    .left-discord .info-label {
        font-size: 6px;
    }

    .left-discord .info-value {
        font-size: 7px;
    }

    .left-discord .role-item {
        padding: 2px 4px;
        gap: 3px;
    }

    .left-discord .role-circle {
        width: 6px;
        height: 6px;
    }

    .left-discord .role-name {
        font-size: 7px;
    }

    .left-discord .note-content {
        padding: 4px;
        gap: 3px;
        font-size: 7px;
    }

    .left-discord .note-content i {
        font-size: 7px;
    }

    .bio-request-btn {
        margin-top: 5px;
        padding: 6px 8px;
        font-size: 8px;
    }

    .bio-request-btn i {
        font-size: 10px;
    }

    .bio-request-btn span {
        display: inline-block;
    }

    .center-profile .profile-card {
        width: 100%;
        padding: 8px 3px;
    }

    .center-profile .avatar-wrapper {
        width: 35px;
        height: 35px;
        margin-bottom: 5px;
    }

    .center-profile .avatar {
        border-width: 2px;
    }

    .center-profile .status-badge {
        width: 8px;
        height: 8px;
        border-width: 2px;
        bottom: 5px;
        right: 2px;
    }

    .center-profile .name {
        font-size: 10px;
        margin-bottom: 2px;
    }

    .center-profile .bio {
        font-size: 7px;
        margin-bottom: 8px;
    }

    .center-profile .info-list {
        padding: 5px 0;
        margin-bottom: 8px;
    }

    .center-profile .info-item {
        font-size: 7px;
        padding: 3px 0;
        gap: 3px;
    }

    .center-profile .info-item i {
        width: 12px;
        font-size: 7px;
    }

    .center-profile div[style*="display: flex"] {
        gap: 3px !important;
        margin-bottom: 8px !important;
    }

    .center-profile .visitor-count {
        padding: 3px 4px;
        font-size: 6px;
        gap: 3px;
    }

    .center-profile .visitor-count i {
        font-size: 7px;
    }

    .center-profile .online-dot {
        width: 5px !important;
        height: 5px !important;
        margin-left: 2px !important;
    }

    .center-profile .tech-icons {
        gap: 3px;
        margin-bottom: 8px;
    }

    .center-profile .tech-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .center-profile .social-buttons {
        gap: 5px;
    }

    .center-profile .social-btn {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .right-chat .chat-container {
        width: 100%;
        height: auto;
        min-height: 200px;
    }

    .right-chat .chat-header {
        padding: 5px;
        font-size: 8px;
        gap: 3px;
    }

    .right-chat .chat-header i {
        font-size: 8px;
    }

    .right-chat .typing-indicator {
        margin-left: auto;
    }

    .right-chat .typing-indicator span {
        width: 4px;
        height: 4px;
    }

    .right-chat .messages {
        padding: 5px;
        gap: 5px;
        max-height: 150px;
    }

    .right-chat .chat-message {
        padding: 4px 6px;
    }

    .right-chat .chat-message-sender {
        font-size: 7px;
        margin-bottom: 2px;
    }

    .right-chat .chat-message-content {
        font-size: 7px;
    }

    .right-chat .chat-message-time {
        font-size: 5px;
        margin-top: 2px;
    }

    .right-chat .chat-input-area {
        padding: 5px;
    }

    .right-chat .chat-name {
        padding: 4px 6px;
        font-size: 7px;
        margin-bottom: 4px;
    }

    .right-chat .message-input-wrapper {
        gap: 3px;
    }

    .right-chat .chat-message {
        padding: 4px 6px;
        font-size: 7px;
    }

    .right-chat .chat-send {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }

    .bio-modal-content,
    .like-modal-content {
        width: 80%;
        max-width: 250px;
    }

    .bio-modal-header,
    .like-modal-header {
        padding: 10px;
    }

    .bio-modal-header h3,
    .like-modal-header h3 {
        font-size: 14px;
    }

    .bio-modal-body,
    .like-modal-body {
        padding: 15px;
    }

    .bio-modal-body p,
    .like-modal-body p {
        font-size: 12px;
    }

    .telegram-icon {
        font-size: 40px;
    }

    .bio-modal-footer,
    .like-modal-footer {
        padding: 10px;
    }

    .bio-modal-btn,
    .like-modal-btn {
        padding: 8px 15px;
        font-size: 11px;
    }

    .snowflake {
        display: none;
    }

    body {
        overflow-x: hidden;
    }
}

/* ========== СНЕЖИНКИ ========== */
.snowflake {
    color: #d98fa8;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(176, 48, 95, 0.5);
    position: fixed;
    top: -10%;
    z-index: 9999;
    user-select: none;
    cursor: default;
    animation: snowflakes-fall 10s linear infinite, snowflakes-shake 3s ease-in-out infinite;
}

@keyframes snowflakes-fall {
    0% { top: -10%; }
    100% { top: 100%; }
}

@keyframes snowflakes-shake {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

.snowflake:nth-of-type(1) { left: 10%; animation-delay: 0s, 0s; }
.snowflake:nth-of-type(2) { left: 20%; animation-delay: 2s, 0.5s; font-size: 1.2em; opacity: 0.8; }
.snowflake:nth-of-type(3) { left: 30%; animation-delay: 4s, 1s; font-size: 0.8em; opacity: 0.6; }
.snowflake:nth-of-type(4) { left: 40%; animation-delay: 6s, 1.5s; font-size: 1.1em; }
.snowflake:nth-of-type(5) { left: 50%; animation-delay: 8s, 2s; font-size: 0.9em; opacity: 0.7; }
.snowflake:nth-of-type(6) { left: 60%; animation-delay: 1s, 2.5s; font-size: 1.3em; }
.snowflake:nth-of-type(7) { left: 70%; animation-delay: 3s, 3s; font-size: 0.7em; opacity: 0.5; }
.snowflake:nth-of-type(8) { left: 80%; animation-delay: 5s, 3.5s; font-size: 1.1em; }
.snowflake:nth-of-type(9) { left: 90%; animation-delay: 7s, 4s; font-size: 0.9em; opacity: 0.8; }
.snowflake:nth-of-type(10) { left: 15%; animation-delay: 9s, 4.5s; font-size: 1.2em; }

/* ========== ИНДИКАТОР ПЕЧАТАЕТ... ========== */
.typing-indicator {
    display: none;
    align-items: center;
    gap: 3px;
    margin-left: 10px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #b0305f;
    border-radius: 50%;
    display: inline-block;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.6; }
    40% { transform: scale(1); opacity: 1; }
}

/* ========== АНИМАЦИЯ ДЛЯ ЛАЙКА ========== */
.fa-heart {
    transition: all 0.2s;
}

/* ========== АНИМАЦИЯ ДЛЯ ОНЛАЙНА ========== */
.online-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b0305f;
    margin-left: 8px;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(176, 48, 95, 0.7);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(176, 48, 95, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(176, 48, 95, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(176, 48, 95, 0);
    }
}

/* ========== КРАСИВОЕ ОКНО ДЛЯ ЛАЙКОВ ========== */
.like-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.like-modal-content {
    background: linear-gradient(135deg, #2c1a1f, #1f1625);
    border-radius: 30px;
    width: 90%;
    max-width: 400px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    animation: modalAppear 0.5s;
    border: 1px solid rgba(176, 48, 95, 0.3);
}

.like-modal-header {
    background: linear-gradient(135deg, #b0305f, #6d1f3b);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.like-modal-header i {
    font-size: 24px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
}

.like-modal-header h3 {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.like-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.like-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.like-modal-body {
    padding: 30px;
    text-align: center;
}

.like-modal-icon {
    font-size: 60px;
    color: #b0305f;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.like-modal-body p {
    font-size: 20px;
    color: #f0e0e0;
    margin-bottom: 10px;
    font-weight: 600;
}

.like-modal-text {
    font-size: 16px;
    color: #d98fa8;
}

.like-modal-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(176, 48, 95, 0.3);
    display: flex;
    gap: 10px;
}

.like-modal-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.like-modal-btn i {
    font-size: 16px;
}

.remove-btn {
    background: rgba(176, 48, 95, 0.15);
    color: #b0305f;
    border: 1px solid rgba(176, 48, 95, 0.3);
}

.remove-btn:hover {
    background: #b0305f;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(176, 48, 95, 0.4);
}

.remove-btn:hover i {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.keep-btn {
    background: linear-gradient(135deg, #b0305f, #6d1f3b);
    color: white;
    box-shadow: 0 5px 15px rgba(176, 48, 95, 0.4);
}

.keep-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(176, 48, 95, 0.6);
}

.keep-btn:hover i {
    animation: spin 0.5s;
}

/* Анимация для сердечка при лайке */
@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* ========== ТЁМНАЯ ТЕМА ДЛЯ НОВЫХ ЭЛЕМЕНТОВ ========== */
body.dark-theme .like-modal-content {
    background: linear-gradient(135deg, #2c1a1f, #1f1625);
}