/* Основные стили для личного кабинета */
.user-profile {
    background: #1a1a1a;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    margin: 0 auto;
}

.user-profile h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #00d4ff;
}

.user-profile input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #00d4ff;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
}

.user-profile input::placeholder {
    color: #aaa;
}

.user-profile button {
    width: 100%;
    padding: 10px;
    background: #00d4ff;
    border: none;
    border-radius: 5px;
    color: #1a1a1a;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.user-profile button:hover {
    background: #00a8cc;
}

/* Стили для анимации волны */
.wave-container {
    position: relative;
    height: 100px;
    overflow: hidden;
    margin-top: 20px;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,') repeat-x;
    animation: wave-animation 3s linear infinite;
}

@keyframes wave-animation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}